I am using Pyplot in Julia (almost identical to Python's matplotlib) and I have generated a 2x3 subplot with
fig, axs= plt.subplots(2, 3, sharey=false,sharex="col")
I manage the individual subplots by accessing an array, for example
axs[1,1].set_xscale("log")
I would like to have the 3 bottom plots share the y-axis, but only for the 3 bottom plots. Similar questions on SO have adressed this issue but not for the case where individual subplots are managed in array form as above.
How can I make axs[2,1], axs[2,2], axs[2,3] share the y-axis?