Auto.Arima Plot X-Axis

时间:2017-12-04 00:41:08

标签: r r-markdown forecasting arima

我目前正在尝试使用雅虎财经的数据对Facebook股票价格进行预测,而我无法理解自动化预测图的x轴上的标签究竟是什么。

这是我到目前为止所做的:

fb <- c("FB")%>%
  tq_get(get = "stock.prices",
         from = "2013-01-01",
         to = "2014-01-1")
fb %>% tail(10)
fit <- auto.arima(fb$close, ic="bic")
fit.forecast <- forecast(fit, h=20)
fit.forecast
plot(fit.forecast)

这会产生我正在寻找的正确预测,但是x轴从0到250,而不是按日期,我​​正在寻找。有没有办法在标签中完成这一变化?

Here is what my plot looks like for reference

0 个答案:

没有答案