Collects All Models Specified by "sarimaSpec"
Models specified by "sarimaSpec".
sSummaryModel( x, maxorder = c(3, 1, 2), period = 12, criterion = "bic", method = "CSS" )
x
: T by k data matrix: T data points in rows with each row being data at a given time point, and k time series in columns.maxorder
: Maximum order of ARIMA model where is the AR order, the degree of differencing, and the MA order. Default value is (3,1,2).period
: Seasonal period. The default is 12.criterion
: Information criterion used for model selection. Either AIC or BIC. Default is "bic".method
: Estimation method. See the arima command in R. Possible values are "CSS-ML", "ML", and "CSS". Default is "CSS".A list containing:
data(TaiwanAirBox032017) summary <- sSummaryModel(TaiwanAirBox032017[,1:3])
Useful links