Hello all
I am trying to graph the Impulse Response Coefficients after estimating a panel VAR.
My questions is how to do that while imposing restrictions on some of the VAR coefficients ?
I used the following without restrictions (Note that pvar estimates panel VAR and pvarirf graphs the IRF after pvar)
I tried to define some restrictions and apply them on the VAR however
does not seem to accept constraints ?
I get an error message that option constraints () is not allowed.
I am using stata 11, can anyone help with this please?
I am trying to graph the Impulse Response Coefficients after estimating a panel VAR.
My questions is how to do that while imposing restrictions on some of the VAR coefficients ?
I used the following without restrictions (Note that pvar estimates panel VAR and pvarirf graphs the IRF after pvar)
Code:
pvar abn si tg lp ht , lags(1) pvarirf, step(10) impulse(abn) response(si) pvarirf, step(10) impulse(tg) response(si)
Code:
pvar
Code:
constraint 1 [abn]ht= 0 constraint 2 [tg]ht= 0 constraint 2 [lp]abn = 0 pvar abn si tg lp ht , lags(1) constraints (1/3) pvarirf, step(10) impulse(abn) response(si) pvarirf, step(10) impulse(tg) response(si)
I am using stata 11, can anyone help with this please?
Comment