Update model's dataset
getModelData.RdUpdate currently specified or built model with most recent data.
Details
Primarily used within specify model calls,
getModelData is used to retrieve the appropriate underlying variables,
and apply model specified transformations automatically.
It can be used to also update a current model in memory with the most recent data.
See also
getSymbols load data
specifyModel create model structure
buildModel construct model
modelData extract model dataset
Examples
if (FALSE) { # \dontrun{
my.model <- specifyModel(Next(OpCl(QQQ)) ~ Lag(Cl(NDX),0:5))
getModelData(my.model)
} # }