Description Usage Arguments Examples
Fit classical time series models, such as ARIMA or exponential smoothing, to a time series
1 | bm_timeseries(form, data, lpars)
|
form |
formula |
data |
training data (see example) |
lpars |
list of parameters (see example) |
1 2 3 4 5 6 7 8 9 | data("water_consumption")
x <- embed_timeseries(water_consumption, 5)[1:100,]
form <- target ~.
lpars <-
list(bm_timeseries = list(model = c("bm_arima","bm_tbats")))
bmodels <- bm_timeseries(form, x, lpars)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.