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
Thanks @smouksassi - this was identified in a number of reverse dependency failures as @thomasp85 mentioned. I'm using this as my reprex:
library(ggplot2)
ggplot(mpg, aes(cty, hwy)) +
geom_point() +
scale_x_continuous(
breaks= c(0, 20, 40),
labels= c("0", "20", "40")
)
#> Error: Breaks and labels are different lengths
I changed how breaks were "censored" by the scales by accident. I think the solution is to move the censoring to guide_train() rather than have the scales do it, but there might be something easier. I'm happy to fix this, but it will take a few days.
This old issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with reprex) and link to this issue. https://reprex.tidyverse.org/
This old issue has been automatically locked. If you believe you have found a related problem, please file a new issue (with reprex) and link to this issue. https://reprex.tidyverse.org/
lockbot
locked and limited conversation to collaborators
May 20, 2020
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
As reported in this discussion and reprex:
#3398 (comment)
Opening a new issue to keep track of it.
The text was updated successfully, but these errors were encountered: