我刚刚阅读了subplot2grid
http://matplotlib.org/users/gridspec.html的介绍
我不明白为什么它被用作
fig = plt.figure()
plt.subplot2grid((2,2),(0, 0))
而不是
fig = plt.figure()
fig.subplot2grid((2,2),(0, 0))
通过plt.subplot2grid(...)
,如果我创建了多个图形,子图在哪个图形上?
我刚刚阅读了subplot2grid
http://matplotlib.org/users/gridspec.html的介绍
我不明白为什么它被用作
fig = plt.figure()
plt.subplot2grid((2,2),(0, 0))
而不是
fig = plt.figure()
fig.subplot2grid((2,2),(0, 0))
通过plt.subplot2grid(...)
,如果我创建了多个图形,子图在哪个图形上?