I just read an introduction to subplot2grid
http://matplotlib.org/users/gridspec.html
I don't understand why it is used like
fig = plt.figure()
plt.subplot2grid((2,2),(0, 0))
rather than
fig = plt.figure()
fig.subplot2grid((2,2),(0, 0))
By plt.subplot2grid(...)
, if I have created multiple figures, which figure the subplot is on?