Plots.jl
Plots.jl copied to clipboard
Shared Title, x and y labels among subplots
This is done with PyPlot, but with Plots.jl + pyplot backend is there a way to achieve the shared title, shared x and y labels among subplots? This is useful when all plots have the same axis label and units, etc.

No, Plots does not support that.
Your could try to achieve this with annotations perhaps
@isentropic Thanks! Potentially. But since, FWIK, annotate!() doesn't support positioning with fraction of axis, the positioning will be manual.
This would be a great feature! (and rather essential for production quality plots)
Just echoeing that this would be a great feature if not yet supported!
The workaround for this is to add subplots in the layout that only contain the titles (in fact, that is how plot_title is implemented).