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 for this great package & please note that I have not encountered this issue in production but just when playing around - but I still wanted to report it just in case it matters.
In the code below, I get an error message claiming that the y-aesthetic is missing, while it is clearly provided and also picked up by other geoms.
library(ggridges)
library(ggplot2)
ggplot(mtcars, aes(x = mpg, y = cyl)) + geom_density_ridges()
#> Picking joint bandwidth of 2.48
#> Error in `check_required_aesthetics()`:
#> ! geom_density_ridges requires the following missing aesthetics: y
The text was updated successfully, but these errors were encountered:
Thanks for this great package & please note that I have not encountered this issue in production but just when playing around - but I still wanted to report it just in case it matters.
In the code below, I get an error message claiming that the y-aesthetic is missing, while it is clearly provided and also picked up by other geoms.
The text was updated successfully, but these errors were encountered: