models {struct}R Documentation

Get/set models of a model_seq

Description

Returns the list of models in a model_seq object

Usage

models(ML)

models(ML) <- value

Arguments

ML

a model_seq object

value

a list containing only model objects

Value

models(ML)

returns a list of models in the model sequence

models(ML)<-

sets the list of models in the model sequence

Examples

# Create a model sequence
ML = model_seq()
models(ML) = list(example_model(), example_model())
models(ML)

[Package struct version 1.6.0 Index]