Object Reference : Object View and Procedure Reference : Var
  
 
output
Display estimation output.
output changes the default object view to display the estimation output (equivalent to using Var::results).
Syntax
var_name.output
For BTVCVARs, the following syntax can be used to specify the coefficient series to display in the estimation output view:
var_name.output [@var var_list] [@lag lag_list] [@exog exog_list]
where var_list is a list of (endogenous) variables, lag_list is a list of lags, and exog_list is a list of exogenous variables. Each list is specified using a key-value pair, where the key (@var, @lag, or @exog) indicates the list type, and the value (var_list, lag_list, or exog_list) is a space-delimited list of items to select.
Leave a list unspecified (i.e., omit the associated key-value pair) to select every item in the list in the order in which they appear at the time of estimation. To specify an empty list, include the key but leave the value blank.
Options
 
p
Print estimation output for estimation object
Examples
The output keyword may be used to change the default view of an estimation object. Entering the command:
var1.output
displays the estimation output for VAR1.
var var2.btvcvar 1 2 4 4 gdp infl @ c unemp
var2.output @var gdp @lag 1 4
shows the coefficient series corresponding to GDP(-1), GDP(-4), C, and UNEMP for the BTVCVAR VAR2. Note that C and UNEMP are included (selected) because exog_list is unspecified. To hide coefficients on exogenous variables, use the following instead:
var2.output @var gdp @lag 1 4 @exog
Cross-references
See Var::results.