-
Notifications
You must be signed in to change notification settings - Fork 2.1k
geom_area with negative y not working in ggplot2 3.2.0 #3390
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
This comment has been minimized.
This comment has been minimized.
Rendered reprex below. @thomasp85 Is this somehow related to the rewritten polygon rendering code? We may have to consider a hotfix release, since this is a serious regression. library(ggplot2)
d <- data.frame(
x = 1:6,
y = c(1, 2, 2, 1, 0, -1)
)
ggplot(d, aes(x, y)) +
geom_area(fill = "pink", alpha = 0.5) +
geom_point() ggplot(d, aes(x, y - 1)) +
geom_area(fill = "pink", alpha = 0.5) +
geom_point() Created on 2019-07-03 by the reprex package (v0.3.0) |
I’ll look into it. |
This is due to There are two ways around this.
I generally prefer 1) as it is how I think positions should behave (i.e. not fiddle with data ordering), but it may have unforeseen consequences 🤷♂️ I agree this should be fixed in a hot fix (and we really should have some tests to catch this) cc @hadley |
|
Let's wait a week before we start release process |
If I recall correctly, the ordering in PositionStack exists to fix my first ever bug report (#1552) 🙂. So it is there for a reason, but it's possible that reason has been obviated by other changes since. I can try to look into it this weekend. |
I've opened a PR that will address this, but in the meantime library(ggplot2)
set.seed(115)
ggplot(
data.frame(
x = 1:100,
y = cumsum(rnorm(n = 100, mean = 0, sd = 3))
),
aes(x, y)) +
geom_ribbon(aes(ymax = y, ymin = 0), fill = "pink", alpha = 0.5) +
geom_path() Created on 2019-07-17 by the reprex package (v0.3.0) |
Some weeks have passed. Do we start the process? While this issue should be hot-fixed, this might not be as serious as we thought at first in terms of the number of users affected, considering the fact there's no other issues filed than this one. So, if you are very busy (sorry, I don't think I can review #3401...), I think it's okay not to hurry so much. But, I'm a bit worrying about that the CRAN check is all red probably due to #3394 (, which seems already fixed by @paleolimbot). Do you get any serious warnings about this from CRAN people? https://cran.rstudio.com/web/checks/check_results_ggplot2.html |
I’m currently on vacation (this week and next). I’ll begin release once I’m back |
OK. Have a nice vacation! |
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/ |
In
ggplot2 3.1.1
the area under the curve handles negative valuesIn
ggplot2 3.2.0
something goes wrong:The text was updated successfully, but these errors were encountered: