Refining a VAR Model
Refine a fitted VAR model by removing simultaneously insignificant parameters
refVAR(model, fixed = NULL, thres = 1)
model
: An output object of the command VAR or the refVAR commandfixed
: A logical matrix for VAR polynomial structurethres
: Threshold used to set parameter to zero. Default is 1.Refine a VAR fitting by setting all estimates with t-ratio less than the threshold (in modulus) to zero.
The same as those of the command VAR
Tsay (2014, Chapter 2)
Ruey S. Tsay
VAR
data("mts-examples",package="MTS") gdp=log(qgdp[,3:5]) zt=diffM(gdp) m1=VAR(zt,3) m2=refVAR(m1,thres=1.0) names(m2)
Useful links