Object Reference : Object View and Procedure Reference : Model
  
 
drop
Drop equations for one or more endogenous variables in the model.
Syntax
model_name.drop(options) var_list
Where var_list is a space delimited list of variables whose equations will be dropped from the model. By default if a variable is contained in a multi-equation object, such as a system, VAR or model, the entire object will be dropped, which will also drop the specification for the other variables defined in that object.
Options
 
nomult
Do not drop multi-equation objects
noerr
Suppress variable not found errors
Examples
m1.drop gdp
will drop the equation/object which has GDP as a dependent variable from the model M1.
m2.drop(nomult) gdp unemp
will drop the equations which have GDP or UNEMP as dependent variables. Systems, VARs, models, etc… will not be dropped.
Cross-references