I am using a wordcloud2 package to create wordclouds, but can't seem to find a way to plot them in a grid. I have tried the grid.arrange but it produces an error and doesn't allow me to plot the clouds?
Are there any solutions to do this?
here is my code
# main wordcloud function
w1 <- wordcloud2(w_virgin, size = 0.8, shape = 'circle',
rotateRatio = 0.5, minSize = 1)
w2 <- wordcloud2(w_united, size = 0.8, shape = 'circle',
rotateRatio = 0.5, minSize = 1)
grid.arrange(w1, w2)