-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
coord_radial: add xlim and ylim arguments #6359
base: main
Are you sure you want to change the base?
Conversation
Thanks for the PR! For reasons mentioned in #6259 (comment), I oppose this proposal, so I'll leave the task of approving this PR to other maintainers. |
Thanks for your feedback! I understand your concerns and will leave this open for further review by other maintainers. |
I discussed this with Thomas and he didn't object too much to this idea. However, we felt it was more intuitive to have a |
Thanks for the suggestions! I see the reasoning behind using |
R/coord-radial.R
Outdated
view_scales_polar(scale_x, self$theta, self$limits$theta, | ||
expand = params$expand[c(4, 2)] | ||
), | ||
view_scales_polar(scale_y, self$theta, self$limits$r, | ||
expand = params$expand[c(3, 1)] | ||
), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the above assumes theta == "x"
, whereas the limits should be swapped if theta == "y"
Should the expand arguments respect |
I don't think the top/right/bottom/left parameterisation of the expand argument makes much sense in the context of |
Co-authored-by: Teun van den Brand <[email protected]>
I've observed that even with clipping enabled, two points remain outside the circular panel area. I'm unsure whether ggplot(mtcars, aes(disp, mpg)) +
geom_point() +
coord_radial(
start = -0.4 * pi,
end = 0.4 * pi, inner.radius = 0.3,
xlim = c(200, 300),
ylim = c(15, 30),
clip = "on"
) |
It seems |
Using the current main branch, I don't see an issue with turning on clipping. I'm not sure why that doesn't work on your end. devtools::load_all("~/packages/ggplot2/")
#> ℹ Loading ggplot2
ggplot(mtcars, aes(disp, mpg)) +
geom_point() +
scale_x_continuous(limits = c(200, 300), oob = scales::oob_keep) +
scale_y_continuous(limits = c(15, 30), oob = scales::oob_keep) +
coord_radial(
start = -0.4 * pi,
end = 0.4 * pi, inner.radius = 0.3,
clip = "on"
) Created on 2025-04-03 with reprex v2.1.1 |
Thanks for checking! Strangely, I still can't figure out why it's not working on my end — even with the current main branch. |
Partial of #6259 (The feature request has been changed from set limits for
coord_radial()
).Since
coord_polar()
does not have anexpand
argument, I have not implemented this forcoord_polar()
.