-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or request
Description
When saving a ggplot with scales adjusted using function from ggbreak, I am getting a strange behavior from mrggsave, The plot saved by mrggsave shows orginal plot without scales breaks, unlike plot saved by ggsave
library(mrggsave)
library(ggbreak)
p <- ggplot(economics, aes(x=date, y = unemploy, colour = uempmed)) +
geom_line()
plot <- p + scale_wrap(n=4)
ggsave(plot, file = "plot_ggsave.pdf"
, onefile=FALSE
, device = "pdf"
, width = 8
, height = 6
, units = "in" )
mrggsave(plot,
stem = "plot_mrggsave",
onefile = FALSE,
dev = "pdf",
width = 8 height = 6
)Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request

