I have used gridExtra to create 2 plots next to each other and I can save the object using ggsave
However, the plots are misaligned in gridExtra so I used this method
#Method 2 - gtable
require(gtable)
#Extract Grobs
g1<-ggplotGrob(left)
g2<-ggplotGrob(right)
#Bind the tables
g<-gtable:::cbind_gtable(g1, g2, "first")
#Remove a row between the plots
g <- gtable_add_cols(g, unit(-1,"cm"), pos=ncol(g1))
#draw
grid.newpage()
grid.draw(g)
this method is covered in this link
The perils of aligning plots in ggplot
It worked beautifully for my graphs but when I save the
object <- grid.draw(g)
the object is NULL when I try to look at it and I am not sure how to save it as a png
the gridExtra method can be saved as an object and saved using
ggsave('g.png',width=6,height=4,dpi=600)
how would you save grid.draw output? I tried saving it using Rstudio UI but it only saves one plot not both next to each other