which is a 4 x 2 grid on the left and a stack of 4 plots on the right. However, I want the left 4 x 2 grid to be 1/3 of the total width and the right stack to be 2/3 of the total width. I cannot get that to work. Any advice?
Here’d be one solution for Makie.jl as a fallback, I don’t know how to do it in Plots either:
f = Figure()
axs_left = [Axis(f[1, 1][i, j]) for i in 1:4, j in 1:2]
axs_right = [Axis(f[1, 2][i, 1]) for i in 1:4]
colsize!(f.layout, 1, Relative(1/3))
f
Thanks, it is helpful to see how to modify the grid with optional heights and widths. However, what I am trying to do start with the following picture and then shrink the width of the 4x2 grid on the left and expand the width of the column on the right. Still don’t see how to do that.
That worked. Thank you. I had tried various ways of adding the {w} spec before but must have input that modifier incorrectly. In any case, your solution shows the elegance of the @layout notation.