I have five venndigram plots and I want put them in one slide. I wonder anyone could help me how to do it. I used the the following code but could not help me.
gridExtra::grid.arrange(grobs = list(VD1, VD2, VD3, VD4, VD5),
ncol = 3, nrow = 2, labels = LETTERS[1:5])
These were the errors
Error in gList(list(1, wrapvp = list(x = 0.5, y = 0.5, width = 1, height = 1, :
only 'grobs' allowed in "gList"
In addition: Warning messages:
1: In grob$wrapvp <- vp : Coercing LHS to a list
2: In grob$wrapvp <- vp : Coercing LHS to a list
3: In grob$wrapvp <- vp : Coercing LHS to a list
4: In grob$wrapvp <- vp : Coercing LHS to a list
5: In grob$wrapvp <- vp : Coercing LHS to a list
Thank you!