Hi,
I’m trying to create a 2 by 10 grid of plots. The Plots documentation provides an example for a 2x2 grid:
plot(rand(10,4), layout=grid(2,2),ticks=nothing)
However, extending this to
plot(rand(10,20),layout=grid(2,10),ticks=nothing)
doesn’t seem to work well.
In particular, I’d like to compress the y-axis for each of the plots.
Is there a way to do that?