print.bestmodels {artfima} | R Documentation |
Methods function for bestModels.
## S3 method for class 'bestmodels'
print(x, ...)
x |
produced by bestModels |
... |
additional arguments |
The plausibility is shown. This is defined for AIC by the eqn
p(AIC) = exp(0.5*(min(AIC)-AIC))
,
where AIC is the vector of AIC values. Similarly for the BIC.
Data frame with 6 rows and 5 columns. The first column corresonds to best models, second the second best, etc. The rows corresond respectively to the chosen AIC models, AIC values, AIC plausibility, BIC models, BIC values and BIC plausibility
A. I. McLeod
## Not run: #takes about 10 seconds
data(ogden)
ans<-bestModels(ogden)
ans
## End(Not run)