SummaryModel {SLBDD}R Documentation

Collects All Models Specified by "arimaSpec"

Description

Collects all models Specified by "arimaSpec".

Usage

SummaryModel(x, maxorder = c(5, 1, 3), 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 (p,d,q) where p is the AR order, d the degree of differencing, and q the MA order. Default value is (5,1,3).

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

x <- matrix(rnorm(300, mean = 10, sd = 4), ncol = 3, nrow = 100)
summary <- SummaryModel(x)

[Package SLBDD version 0.0.4 Index]