-
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
ggplot_add.list()
uses the %+%
function instead of the +
generic.
#5536
Comments
I think that |
Ah, that's why! I might need to read up on S7, apparently. Then, in the meantime, how about exporting a |
Can you give an (dummy) example of what you'd like to work that currently doesn't? #' @export
ggplot_add.list <- function(object, plot, object_name) {
for (o in object) {
plot <- ggplot_add(o, plot, object_name)
}
plot
} |
I'm trying to change ggnewscale so that the "+.gg_subclass" <- function(e1, e2) {
e2 <- rename_aes(layer = e2)
NextMethod()
} So layers get modified before being added to the plot. The problem is that something like this: ggplot(mapping = aes(x, y)) +
list(
geom_contour(....),
scale_color_viridis_c(...),
new_scale_color(),
geom_point(...),
scale_color_viridis_c(option = "A")
) doesn't work, because the first |
Another possibility would be to have somethig like ggplot_add.list <- function(object, plot, object_name) {
for (o in object) {
if (is.data.frame(object)) {
plot <- plot %+% o
} else {
plot <- plot + o
}
plot
} |
Thanks, yes that makes sense to me. I still think that overriding |
For a method that would work starting at R version 4.3, we could add a I assume that ggplot2 itself would not want to require version 4.3, but it would allow other packages to take advantage of not needing |
Interesting, I was only peripherally aware of |
It's what makes the |
ggplot_add.list()
adds each element of the list using%+%
instead of+
here:ggplot2/R/plot-construction.R
Lines 156 to 161 in ca47270
The idea is that
ggplot() + list(e1, e2, e3)
should be the same asggplot() + e1 + e2 + e3
, but this is not true if someone (😇) wanted to create a gg subclass with a custom+
method.I'm not sure why that code uses
%+%
instead of+
. I modified the code and run tests both ways and everything passes. This logic has been since 3c16f9c from 2017Would it be possible to change
ggplot_add.list()
to use the+
generic? Barring that, would it be possible to make%+%
an exported generic (same as+
)?The text was updated successfully, but these errors were encountered: