does any one have the dataset requirements for fable package in R here some problems I had, any one can give any suggestion will be nice. my R version is
platform x86_64-w64-mingw32
arch x86_64
os mingw32
system x86_64, mingw32
status
major 3
minor 5.2
year 2018
month 12
day 20
svn rev 75870
language R
version.string R version 3.5.2 (2018-12-20)
nickname Eggshell Igloo
could I use irregular time data for modeling? say: I have price data for 250 days out of 365 days but I still want to use fable to model ARIMA of the price. is that possible? the example form github is uesing tsibbledata::ausretail has no missing date in the data set
seems the commend the fable pacakge grammar changed I was using the example from this page 2018-12 it was fine https://github.com/mitchelloharawild/fable-tfeam-2018/blob/master/index.Rmd
but now I am not able to use the code. e.g. the ETS was using
fbl_cafe_fit <- vic_cafe %>%
fable::ETS(Turnover ~ season("M"))
now from this page, people need to put extra 'model' outside?? https://github.com/tidyverts/fable
UKLungDeaths %>%
model(ets = ETS(log(mdeaths))) %>%
forecast
is that new grammar or my understanding is wrong?
Seems now i do not have auto.arima () option from fable any more??? i need to specify pdq() and PDQ()
USAccDeaths %>% as_tsibble %>% model(arima = ARIMA(log(value) ~ pdq(0,1,1) + PDQ(0,1,1)))
after i fit the arima model, i also have problem use the fitting model to predict next period this grammar not work any more:
fbl_cafe_fc <- fbl_cafe_fit %>% forecast(h=24)