forecast and fable return different outputs on same dataset for forecasting in R
问题 I am trying to understand the different between two forecasting package forecast and fable , as the two editions of the same book (second edition and third edition seems to imply that the two packages are equivalent. library(dplyr) raw <- c(44.4082519001086, 47.1074380165289, 43.5633367662204, 43.1003584229391, 42.5828970331588, 38.3217993079585, 38.5751520417029) # raw <- c(raw,rev(raw)) forecast.df <- ts(raw) forecast::autoplot(forecast.df) + forecast::autolayer(forecast::holt(forecast.df