You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've installed the dev version of fabletools to work on implementing #169#170, but I'm running into lots of errors when trying to run the examples for forecast. Here is one:
r$> library(fable)
library(tsibble)
library(tsibbledata)
library(dplyr)
library(tidyr)
# Forecasting with an ETS(M,Ad,A) model to Australian beer production
beer_fc <- aus_production %>%
model(ets = ETS(log(Beer) ~ error("M") + trend("Ad") + season("A"))) %>%
forecast(h = "3 years")
Attaching package: 'dplyr'
The following objects are masked from 'package:stats':
filter, lag
The following objects are masked from 'package:base':
intersect, setdiff, setequal, union
Error: `mutate()` argument `ets` errored.
i `ets` is `(function (object, ...) ...`.
x non-numeric argument to mathematical function
Run `rlang::last_error()` to see where the error occurred.
In addition: Warning message:
`time_unit()` is deprecated as of tsibble 0.9.0.
Please use `default_time_units()` instead.
This warning is displayed once every 8 hours.
Call `lifecycle::last_warnings()` to see where this warning was generated.
Is this expected? I have dev versions of all the tidyverts packages installed, as well as dplyr, vctrs and tibble.
The development versions are in flux at the moment while I add varying levels of support for vctrs in preparation for upcoming tibble and dplyr releases. The master branch should currently be suitable for dev tibble and CRAN dplyr.
I've installed the dev version of fabletools to work on implementing #169 #170, but I'm running into lots of errors when trying to run the examples for
forecast
. Here is one:Is this expected? I have dev versions of all the tidyverts packages installed, as well as dplyr, vctrs and tibble.
Session info:
The text was updated successfully, but these errors were encountered: