feasts
feasts copied to clipboard
`max_col` appears to be ignored when set to 0
It looks like setting max_col = 0 does not remove colors from gg_season() as per the documentation.
library(feasts)
#> Loading required package: fabletools
tsibbledata::aus_production %>%
gg_season(Cement, max_col = 0)

tsibbledata::aus_production %>%
gg_season(Cement, max_col = 0, labels = "none")

Created on 2022-05-18 by the reprex package (v2.0.1)