Is there a way to make the yaxis and/or the xaxis limits uniform across 
subplots in Plots.jl?

For example, given the code:

using Plots
gr()
p1 = Plots.plot([1, 2, 4])
p2 = Plots.plot([1,5,10,3])
Plots.plot(p1,p2,layout=(1,2))

The hope would be to substitute something along the lines of 
Plots.plot(p1,p2,layout=(1,2), layout_ylim=:auto) that would result in a 
ymax for both subplots being 10. Similarly, something along the lines of 
Plots.plot(p1,p2,layout=(1,2), layout_xlim=:auto) to make the xmax for both 
subplots be 4

Reply via email to