library(Ecdat)
(使用来自可重复性的Orange 数据集。)
我正在尝试使用 R 中的 tsibble、fable 包在 R 中拟合平均预测模型。下面的代码非常简单,但是Error in NCOL(x) : object 'value' not found
当我尝试运行最后一个模型部分时出现错误(即使value
是 中的列名o_ts
),不知道为什么会这样。我从这里(https://robjhyndman.com/hyndsight/fable/)关注 RJH 教程。
如果 arima 和均值预测模型是否相同,我也将不胜感激,如果不是,我应该使用什么函数来代替 Arima。
library(Ecdat)
library(tsibble)
library(feasts)
library(tidyverse)
library(fable)
o<- Orange
o_ts <- o %>% as_tsibble()
o_ts %>%
filter(key=="priceoj") %>%
model(
arima=arima(value))