具有arima
建模功能的哪个R包被认为是最好的?我想以简单的方式模拟拟合arima
模型的新时间序列?
答案 0 :(得分:1)
就个人而言,我喜欢rugarch包。它提供了很多可能性和模型,使用的方便性,也许它有点过于"黑盒子"。
#example ARMA GARCH 1,1 need rugarch package
spec <- ugarchspec(variance.model = list(model = "sGARCH", garchOrder = c(1, 1)),mean.model = list(armaOrder = c(1, 1)))
garch <- ugarchfit(spec = spec, data = timeseries)
forc<-ugarchforecast(garch,n.ahead=200)
plot(forc@forecast$sigmaFor)
plot(forc@forecast$seriesFor)