View source: R/wfs-arima-reg.R
ts_wfs_auto_arima | R Documentation |
This function is used to quickly create a workflowsets object.
ts_wfs_auto_arima(.model_type = "auto_arima", .recipe_list)
.model_type |
This is where you will set your engine. It uses
|
.recipe_list |
You must supply a list of recipes. list(rec_1, rec_2, ...) |
This function expects to take in the recipes that you want to use in the modeling process. This is an automated workflow process. There are sensible defaults set for the model specification, but if you choose you can set them yourself if you have a good understanding of what they should be. The mode is set to "regression".
This only uses the option set_engine("auto_arima")
and therefore the .model_type
is not needed. The parameter is kept because it is possible in the future that
this could change, and it keeps with the framework of how other functions
are written.
modeltime::arima_reg()
arima_reg() is a way to generate a specification of
an ARIMA model before fitting and allows the model to be created using
different packages. Currently the only package is forecast
.
Returns a workflowsets object.
Steven P. Sanderson II, MPH
https://workflowsets.tidymodels.org/
https://business-science.github.io/modeltime/reference/arima_reg.html
Other Auto Workflowsets:
ts_wfs_arima_boost()
,
ts_wfs_ets_reg()
,
ts_wfs_lin_reg()
,
ts_wfs_mars()
,
ts_wfs_nnetar_reg()
,
ts_wfs_prophet_reg()
,
ts_wfs_svm_poly()
,
ts_wfs_svm_rbf()
,
ts_wfs_xgboost()
suppressPackageStartupMessages(library(modeltime))
suppressPackageStartupMessages(library(timetk))
suppressPackageStartupMessages(library(dplyr))
suppressPackageStartupMessages(library(rsample))
data <- AirPassengers %>%
ts_to_tbl() %>%
select(-index)
splits <- time_series_split(
data
, date_col
, assess = 12
, skip = 3
, cumulative = TRUE
)
rec_objs <- ts_auto_recipe(
.data = training(splits)
, .date_col = date_col
, .pred_col = value
)
wf_sets <- ts_wfs_auto_arima("auto_arima", rec_objs)
wf_sets
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.