sSummaryModel {SLBDD}R Documentation

Collects All Models Specified by "sarimaSpec"

Description

Models specified by "sarimaSpec".

Usage

sSummaryModel(
  x,
  maxorder = c(3, 1, 2),
  period = 12,
  criterion = "bic",
  method = "CSS"
)

Arguments

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 (p,d,q) where p is the AR order, d the degree of differencing, and q 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".

Value

A list containing:

Examples

data(TaiwanAirBox032017)
summary <- sSummaryModel(TaiwanAirBox032017[,1:3])


[Package SLBDD version 0.0.4 Index]