http://matplotlib.org/users/gridspec.htmlの紹介を読んだところですsubplot2grid
なぜこのように使われるのか理解できません
fig = plt.figure()
plt.subplot2grid((2,2),(0, 0))
それよりも
fig = plt.figure()
fig.subplot2grid((2,2),(0, 0))
によってplt.subplot2grid(...)
、複数の図を作成した場合、サブプロットはどの図にありますか?