Plot @layout adjust width of grid

Using Plots.jl:

using Plots; gr(size=(1200,800), dpi=600)
l = @layout [ grid(4, 2){0.33w} [b; c{0.166h}; d{0.166h}; e{0.166h}] ]
p = fill(plot(), 4*3)
plot(p..., layout=l, framestyle=:box)

1 Like