How to unfold plots

Do you mean you want to pass each plot in p as a separate argument to plot? This is done with the “splat” operator ..., e.g.

using Plots
p = [plot(rand(5), rand(5)) for _=1:5]
plot(p...)
2 Likes