Releases: spsanderson/healthyR.ts
Releases · spsanderson/healthyR.ts
healthyR.ts 0.2.3
healthyR.ts 0.2.2
Breaking Changes
- Fix 345 - Fix
ts_sma_plot()
There is a change in the API of this function.
It now requires adata.frame
/tibble
to be passed to the.data
parameter, and
it also now requires the input of a date column and value column. This also now
no longer returns invisible. There was also a fix in the sliding calculation
to appropriately use the given value column.
New Features
- Fix #342 - Add function
ts_extract_auto_fitted_workflow()
Which will pull
out the fitted workflow from any of the Boilerplate functions.
Minor Fixes and Improvements
- Fix #343 - Add attributes to output list of boilerplate functions.
- Fix #347 - Fix
ts_auto_lm()
by droppingstep_rm()
andstep_corr()
which
would preventcalibrate_and_plot()
from working due tomodeltime_calibration()
failing. Also dropped unused parameters from function and documentation. - Fix #349 - Fix to
ts_lag_correlation()
select
statement.
healthyR.ts 0.2.1
Breaking Changes
None
New Features
- Fix #306 - Add function
ts_time_event_analysis_tbl()
- Fix #315 - Add function
ts_lag_correlation()
- Fix #327 - Add some date helpers
- Fix #326 - Add functions
ci_hi()
andci_lo()
- Fix #325 - Add function
ts_event_analysis_plot()
Minor Fixes and Improvements
- Fix #333 - Update
ts_model_auto_tune()
andts_model_spec_tune_template()
to
acceptsvm_poly
andsvm_rbf
. This helps in allowing users to auto tune models
that are create byts_wfs_svm_poly()
andts_wfs_svm_rbf()
functions respectively.
Also added "model_spec_class" to the output of thets_model_auto_tune()
function.
healthyR.ts 0.2.0
Breaking Changes
None
New Features
- Fix #277 - Add function
ts_auto_arima()
boiler plate function. - Fix #284 - Add functions
color_blind()
ts_scale_fill_colorblind()
and
ts_scale_color_colorblind()
- Fix #278 - Add function
ts_auto_smooth_es()
- Fix #279 - Add function
ts_auto_theta()
- Fix #280 - Add function
ts_auto_lm()
- Fix #281 - Add function
ts_auto_svm_poly()
- Fix #282 - Add function
ts_auto_svm_rbf()
Minor Fixes and Improvements
- Fix #275 - Correct
ts_auto_arima_xgboots()
when.tune
is FALSE. - Fix #286 - Change the boilerplate recipe to keep the date column and change
it to a numeric rather than using step_rm() instead use step_mutate(as.numeric()) - Fix #288 - Update tune template helper function smooth_es to use
tune::tune()
- Fix #291 - Move kmeans functions from using
healthyR
tohealthyR.ai
in
anticipation of droppingkmeans
functionality fromhealthyR
healthyR.ts 0.1.9
Breaking Changes
None
New Features
- Fix #223 - Add function
ts_arima_simulator()
- Fix #227 - Add function
ts_feature_cluster()
- Fix #228 - Add function
ts_feature_cluster_plot()
- Fix #241 - Add function
ts_auto_glmnet()
- Fix #243 - Add function
ts_auto_xgboost()
- Fix #244 - Add function
ts_auto_arima_xgboost()
- Fix #245 - Add function
ts_auto_mars()
- Fix #246 - Add function
ts_auto_exp_smoothing()
- Fix #247 - Add function
ts_auto_croston()
- Fix #248 - Add function
ts_auto_nnetar()
- Fix #250 - Add function
ts_auto_prophet_reg()
- Fix #251 - Add function
ts_auto_prophet_boost()
Minor Fixes and Improvements
healthyR.ts 0.1.8
Breaking Changes
None
New Features
- Fix #201 - Add Fitted
ts
and Fittedtibble
data to output. - Fix #202 - Add Residuals
ts
and Residualstibble
data to output. - Fix #204 - Add
Arima()
models with xreg tots_forecast_simulator()
Minor Fixes and Improvements
- Fix #199 - Update
model_extraction_helper()
to utilizeforecast:::arima.string()
under the hood forArima
arima
andauto.arima
models produced by theforecast
package. - Fix #195 - Drop need for
crayon
,cli
, andrstudioapi
since all it did was
make a welcome message that can be done with regularprint()
method. - Fix #213 - Update navigation bar.
healthyR.ts 0.1.7
healthyR.ts 0.1.6
Breaking Changes
None
New Features
- Fix #157 - Add function
ts_vva_plot()
- Fix #149 - Add function
ts_model_compare()
- Fix #156 - Add functions:
ts_acceleration_vec()
ts_acceleration_augment()
step_ts_accleration()
- Fix #155 - Add functions:
ts_velocity_vec()
ts_velocity_augment()
step_ts_velocity()
Minor Fixes and Improvements
healthyR.ts 0.1.5
Quick fix of dropping mtry
from the xgboost ts_auto_tune_template
healthyR.ts 0.1.4
Breaking Changes
None
New Features
- Fix #90 - Add
tidy_fft()
function - Fix #92 - Add
ts_info_tbl()
function - Fix #96 - Add
ts_sma_plot()
function - Fix #98 - Add
ts_to_tbl()
function - Fix #103 - Add
ts_model_auto_tune()
function - Fix #104 - Add
ts_model_spec_tune_template()
function - Fix #114 - Add
ts_wfs_auto_arima()
function - Fix #117 - Add
ts_wfs_arima_boost()
function - Fix #122 - Add
ts_wfs_ets_reg()
function - Fix #125 - Add
ts_wfs_nnetar_reg()
function - Fix #128 - Add
ts_wfs_prophet_reg()
function
Minor Fixes and Improvements
- Fix #105 - Fix
ts_auto_recipe()
bug that forced the change of column names
in the output. This has been fixed and the column names supplied will now be in
the recipe terms.