I am trying to plot a list of plots using GGiraph in Rstudio.
The solution to plot multiple plots is either through Cowplot (ggobj = plot_grid(plot1, plot2)
) or Patchwork (code = print(plot / plot)
). This works if you individually print single plots. However, it looks like it does not accept a list of plots. I want the plots to be arranged in one column with multiple rows.
Does anyone have a solution to this?