Object Reference : Object View and Procedure Reference : Model
  
 
override
Specifies (or merges) overridden exogenous variables and add factors in the active scenario.
Syntax
model_name.override(options) ser1 [ser2 ser3 ...]
Follow the keyword with the argument list containing the exogenous variables or add factors you wish to override.
Options
 
m
Merge into (instead of replace) the existing override list.
r
Remove the variable from the override list.
Examples
mod1.override fed1 add1
creates an override list containing the variables FED1 and ADD1.
If you then issue the command:
mod1.override fed1
EViews will replace the original exclude list with one containing only FED1. To add overrides to an existing list, use the “m” option:
modl.override(m) add1
The override list now contains both series.
Cross-references
See the discussion in “Specifying Scenarios”. See also “Models” for a general discussion of models.
See Model::exclude. Model::scenario and Model::revert.