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
This was identified in the revdep checks (#3303), as it breaks a plot in bayesAB. This error was introduced on purpose (#3235). It's worth noting that the behaviour of layers when all the required aesthetics are set and not mapped is undefined and not consistent between geometries. See #3303 (comment) , #3235 (comment) , and #3303 (comment) .
library(ggplot2)
ggplot() +
geom_ribbon(x=1:5, ymin=0, ymax=1:5, data=data.frame(1:5)) +
geom_blank(aes(x=1:5, y=1:5))
#> Error: Either ymin or ymax must be given as an aesthetic.
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
Nov 5, 2019
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
This was identified in the revdep checks (#3303), as it breaks a plot in bayesAB. This error was introduced on purpose (#3235). It's worth noting that the behaviour of layers when all the required aesthetics are set and not mapped is undefined and not consistent between geometries. See #3303 (comment) , #3235 (comment) , and #3303 (comment) .
Whereas in 3.1.1:
The text was updated successfully, but these errors were encountered: