0

我正在关注 Rob Hyndman 预测书,autoplot即使在这个简单的示例中,我也无法使用,摘自书中:

library(ggplot2)
library(tsibble)
y <- tsibble(Year = 2015:2019,
             Observation = c(123,39,78,52,110),
             index = Year)
autoplot(y)

我收到以下错误:Error: Objects of type tbl_ts/tbl_df/tbl/data.frame not supported by autoplot。我确定 y 是tsibble

y
# A tsibble: 5 x 2 [1Y]
   Year Observation
  <int>       <dbl>
1  2015         123
2  2016          39
3  2017          78
4  2018          52
5  2019         110
4

0 回答 0