Hello,
I am getting an error with gg_subseries when my tsibble's index column is named with spaces, e.g. Year Month. There's an error message saying "Don't know how to automatically pick scale for object of type NULL. Defaulting to continuous", which seems to stem from the expr_text() in the line below.
|
scale_fn <- paste0("scale_x_", ggplot2::scale_type(data[[expr_text(idx)]])[1]) |
Maybe using as_name() or as_label() instead of expr_text() will help?
Hello,
I am getting an error with gg_subseries when my tsibble's index column is named with spaces, e.g.
Year Month. There's an error message saying "Don't know how to automatically pick scale for object of type NULL. Defaulting to continuous", which seems to stem from the expr_text() in the line below.feasts/R/graphics.R
Line 437 in dc8e588
Maybe using as_name() or as_label() instead of expr_text() will help?