orderModel | R Documentation |
Orders the model and changes it to the correct format
orderModel(models)
models |
A vector of |
If the models
are c("AR1", "WN", "AR1", "WN", "AR1+WN+AR1+WN"), it will be converted to
c("AR1-1", "WN-1", "AR1-2", "WN-2", "AR1+WN+AR1+WN").
This function is used in gen.lts()
models = c("AR1", "WN", "AR1", "WN", "AR1+WN+AR1+WN")
new.models = orderModel(models)
new.models
models = c('AR1', 'QN', 'WN', 'AR1+QN+WN')
new.models = orderModel(models)
new.models
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.