|
Chapter Contents |
Previous |
Next |
| The VARMAX Procedure |
The following statements fit a BVAR(1) model to the simulated data. You specify the PRIOR= option with the hyper-parameters. The LAMBDA=0.9 and THETA=0.1 are hyper-parameters controlling the prior covariance. Part of the VARMAX procedure output is shown in Figure 4.10.
proc varmax data=simul1;
model y1 y2 / p=1 noint
prior=(lambda=0.9 theta=0.1);
run;
The output in Figure 4.10 shows that parameter estimates are slightly different from those in Figure 4.3. By choosing the appropriate priors, you may be able to get more accurate forecasts using a BVAR model rather than using an unconstrained VAR model.
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 2000 by SAS Institute Inc., Cary, NC, USA. All rights reserved.