How do I estimate a VAR model without an intercept? In the following code, all three models are equivalent.
Code: Select all
create u 100
rndseed 1
series y=nrnd
series x=nrnd
var v1.ls 1 2 x y
var v2.ls 1 2 x y @
var v3.ls 1 2 x y @ cCode: Select all
LS 1 2 X Y 