Reputation: 165
Somehow, I am unable to generate the actual underlying values of the IRFs. See code of a simple VAR model.
irf5<-irf(var2, impulse = "libor", response = "y", n.ahead = 10, ortho = TRUE, boot = TRUE, CI = 0.95, runs = 100)
I can generate the resulting IRF plots just fine with this code:
plot(irf5)
But, I can't generate the underlying values. I'd like to do so to have precise figures. Visually interpreting IRFs is not that accurate. Using the summary() did not provide me this information.
Upvotes: 0
Views: 982
Reputation: 11
I think you need just to write irf5 in command line and push ctrl+enter. If you can plot irf, so there are no errors, you can easily get IRF's values. In other words, inirf5<-irf(var2,....)
you just generate and save new variable, but not call to it
Upvotes: 1