ModelSel {EEML}R Documentation

Selection of Superior Models Using MSC Algorithm

Description

Selection of Superior Models Using MSC Algorithm

Usage

ModelSel(df, Alpha, K)

Arguments

df

Dataframe of predicted values of models with first column as actual values

Alpha

Confidence level of MCS tests

K

Resampling length

Value

References

Examples

library("EEML")
Actual<- as.ts(rnorm(200,100,50))
Model1<- as.ts(rnorm(200,100,50))
Model2<- as.ts(rnorm(200,100,50))
Model3<- as.ts(rnorm(200,100,50))
Model4<- as.ts(rnorm(200,100,50))
Model5<- as.ts(rnorm(200,100,50))
DF <- cbind(Actual, Model1,Model2,Model3,Model4,Model5)
SelModel<-ModelSel(df=DF, Alpha=0.2, K=NULL)


[Package EEML version 0.1.0 Index]