Description Usage Arguments Value Examples
This function allows to manually look for the best parameters for the tailored ARIMA model for a specific time series and computing the resulting stationary ts.
1 | manualparam_tsarima(ts, vct_param)
|
ts |
A univariate time series of class 'ts' object. |
vct_param |
A numeric vector with three integer components (p, d, q), which refers to the AR order, the degree of differencing, and the MA order. |
A list object composed by an object of class 'forecast_ARIMA' , "ARIMA" and 'Arima' (first element) and an object of class "ts" (second element).
1 2 3 | dataset<-data.frame('something'=c(...))
dataset_ts<-ts(dataset, ...)
manualparam_tsarima(dataset_ts[,1])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.