I would like to create a set of subplots in the following disposition, but I can't get my head around the plt.subplot() functionnality...
The lower left subplot could/should be as thin as possible.
Currently, I'm plotting the two left datapoints on a single left plot as following:
plt.figure(figsize=(12, 4))
plt.suptitle("Title: {}, {}".format(i, j))
plt.subplot(131)
plt.plot(data[i, j])
plt.vlines(np.argwhere(data2[0,i,j]==1), 0.5, 0.8, colors='blue', )
plt.subplot(132)
plt.imshow(data3[0], cmap='gray')
plt.subplot(133)
plt.title("Subtitle: {}".format((data3[0,i,j])))
plt.imshow(I)
plt.show()
Thanks in advance!