Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[feature request] Make ggplotly usable with feast/fable based forecast and autoplot() #1568

Closed
klausr90 opened this issue Jul 10, 2019 · 6 comments

Comments

@klausr90
Copy link


I am forecasting different type of models(ARIMA, ETS and Neural networks) on a tsibble based time series data set dat() with the structure Date & Data. The recently released feast/fable packages provide the forecast data that I want to plot. Usually, with ggplot2 i just use the autoplot() function. As i want to convert the obtained plot to a nicer one with plotly, I have added in the last row ggplotly(). The code works totally fine until the penultimate line.
I get the following message in my console:

Warning in geom2trace.default(dots[[1L]][[2L]], dots[[2L]][[1L]], dots[[3L]][[1L]]) :
geom_GeomForecast() has yet to be implemented in plotly.
If you'd like to see this geom implemented,
Please open an issue with your example code at
https://github.com/ropensci/plotly/issues

plot <- dat() %>%
        model(ARIMA(Data),
              ETS(Data),
              NNETAR(Data)) %>%
        forecast(h = 10) %>%
        autoplot(dat()) %>%
        ggplotly()
@cpsievert
Copy link
Collaborator

Thanks, I'm maintaining a list of 3rd-party Geoms in #566

@tanga94
Copy link

tanga94 commented Jul 15, 2021

Hi @cpsievert , did you ever manage to implement this geom in plotly? I'm also interested rendering some forecasts from the fpp3 package as a ggplotly like in @klausr90 's example, so I'm just wondering whether its possible now?

moutikabdessabour added a commit to moutikabdessabour/plotly that referenced this issue Oct 13, 2021
@Justfja
Copy link

Justfja commented May 24, 2022

@cpsievert @moutikabdessabour When using fable with plotly, I am still getting the error that was reported earlier on by @klausr90

Warning in geom2trace.default(dots[[1L]][[2L]], dots[[2L]][[1L]], dots[[3L]][[1L]]) : geom_GeomForecast() has yet to be implemented in plotly. If you'd like to see this geom implemented, Please open an issue with your example code at https://github.com/ropensci/plotly/issues

@cpsievert
Copy link
Collaborator

You currently need the development version remotes::install_github("ropensci/plotly")

@Justfja
Copy link

Justfja commented May 26, 2022

You currently need the development version remotes::install_github("ropensci/plotly")

Thank you for the response, I will try it out

@tanga94
Copy link

tanga94 commented Aug 25, 2022

Hi @cpsievert . I have tried using the development version of plotly however I'm still running into the same issue https://stackoverflow.com/questions/73485119/forecasts-from-fable-package-dont-appear-in-ggplotly-image?noredirect=1#comment129776180_73485119.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants