Open sehoff opened 2 years ago
When using cv.BigVAR() the right-hand side endogenous variables are automatically lagged?
Yes, the both endogenous and exogenous variables are lagged automatically according to p and s in constructModel.
results@preds in the example below are oos predictions, i.e., the first prediction is obtained from an estimation up to T_2 for T_2 +1. The next predictions are rolled over by one period, in my case, keeping the optimal lambda fixed?
Yes, that's correct.
I need to lag exogenous variables myself, such that the timing corresponds to equation (1) in the vignette.
This is done automatically by BigVAR. If you have a non-standard lag order, you can lag it yourself and set s=0
and tf=TRUE
which will not perform and lagging.
Your code looks correct. Let me know if you have additional questions.
Thanks a lot for the quick reply!
I am sorry to ask this probably naive question, but I need to be sure and I am not coding in R often.
cv.BigVAR()
the right-hand side endogenous variables are automatically lagged?results@preds
in the example below are oos predictions, i.e., the first prediction is obtained from an estimation up to T_2 for T_2 +1. The next predictions are rolled over by one period, in my case, keeping the optimal lambda fixed?Here is my code, which should give for each of the endogenous variables in the system a separate OOS R2 (benchmarked wrt to conditional mean forecast):