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
Adding theme_void() to a plot with a custom filter using Magick results in an error. When testing with other theme functions such as theme_minimal() or theme_classic() it works fine. Small reprex based on the example in the documentation:
# Adding theme_void() returns an error# Other theme_*() functions don't seem to have this issue
ggplot(mtcars, aes(x=factor(gear), y=disp)) +
with_custom(
geom_boxplot(aes(fill= as.factor(gear))),
filter=implode
) +
theme_void()
#> Error in .subset(raster, index): only 0's may be mixed with negative subscripts
Adding
theme_void()
to a plot with a custom filter using Magick results in an error. When testing with other theme functions such astheme_minimal()
ortheme_classic()
it works fine. Small reprex based on the example in the documentation:Created on 2023-08-25 with reprex v2.0.2
The text was updated successfully, but these errors were encountered: