简体   繁体   中英

Error in basic example in gg_season of feasts package

I am trying to use the example in the gg_season documentation https://feasts.tidyverts.org/reference/gg_season.html

library(tsibble)
library(dplyr)
tsibbledata::aus_retail %>%
  filter(
    State == "Victoria",
    Industry == "Cafes, restaurants and catering services"
  ) %>%
  gg_season(Turnover)

And I get the following error:

Error in ggplot2::scale_x_date()$trans$breaks(limit, n = len) : 
  unused argument (n = len)

Am I doing something wrong here? Am I missing something obvious?

Ok I found the solution after browsing through the github issues for the package. https://github.com/tidyverts/feasts/issues/94

The way to solve the issue is to update the scales package to the latest version.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM