Description Usage Arguments Details Value See Also Examples
Select the best model.
1 2 | bestTSestModel(models, sample.start=10, sample.end=NULL,
criterion='aic', verbose=TRUE)
|
models |
a list of TSestModels. |
sample.start |
the starting point to use for calculating information criteria. |
sample.end |
the end point to use for calculating information criteria. |
criterion |
Criterion to be used for model
selection. see |
verbose |
if TRUE then additional information is printed. |
Information criteria are calculated and return the best model from ... according to criterion models should be a list of TSestModel's. models[[i]]$estimates$pred is not recalculated but a sub-sample identified by sample.start and sample.end is used and the likelihood is recalculated. If sample.end=NULL data is used to the end of the sample. taic might be a better default selection criteria but it is not available for ARMA models.
A TSestModel
estBlackBox1
,
estBlackBox2
estBlackBox3
estBlackBox4
informationTestsCalculations
1 2 3 | data("eg1.DSE.data.diff", package="dse")
models <- list(estVARXls(eg1.DSE.data.diff), estVARXar(eg1.DSE.data.diff))
z <- bestTSestModel(models)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.