On Friday, June 3, 2016 at 3:58:19 PM UTC-4, jda wrote: > > I am looking for a way for subplots to have column or row span in julia > using PyPlot. In other words, I want to find out how to translate this: > http://matplotlib.org/users/gridspec.html >
The exact same syntax works fine for me: using PyPlot subplot2grid((3,3), (1,0), colspan=2) plot(rand(10)) subplot2grid((3,3), (1, 2), rowspan=2) plot(rand(100))
