R尝试使用VAR模型时出错

时间:2016-02-29 16:07:00

标签: r time-series var

当我尝试在R中估计具有解释变量的VAR模型时,我得到了这个错误:

est<-VAR(varm, lag.max = 20, type= "const", ic = "AIC", exogen = exog)
Error in VAR(varm, lag.max = 20, type = "const", ic = "AIC", exogen = exog) : 
unused arguments (lag.max = 20, type = "const", ic = "AIC", exogen = exog)

它应该是什么?谢谢

1 个答案:

答案 0 :(得分:0)

我遇到了同样的问题。根据@Ahmed Salhin的建议,关闭R而不加载MTS但只有vars库解决了这个问题。

您也可以使用:

detach("package:MTS", unload = TRUE)

如果你想在同一个代码中使用这两个库。