-
Notifications
You must be signed in to change notification settings - Fork 2.1k
make sure using the prepared r_axis_inside
for all methods
#6412
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
base: main
Are you sure you want to change the base?
Conversation
All other methods that use |
How about this? It should produce consistent behavior across repeated calls and will only warning once for multiple panels: library(ggplot2)
my_warn_coord <- coord_radial(start = 0.1 * pi, end = 0.4 * pi, r.axis.inside = FALSE)
# first run
ggplot(mtcars, aes(disp, mpg)) +
geom_point() +
my_warn_coord
# second run
ggplot(mtcars, aes(disp, mpg)) +
geom_point() +
my_warn_coord |
I'm not convinced there should be a |
Thanks for the explanation — I'll keep it out of panel_params as suggested. |
Can I change the warning message to indicate we have set |
If you think that makes things clearer |
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.
Great, thank you this PR and for following along with all the nitpicks! I think this PR is good to go, but we're figuring out some issues with the current main branch. After those are resolved, I think this can be merged in.
Appreciate the review and all the guidance—thanks! |
fix #6411