目前我有3个情节,我正在2x2子图中绘图。它看起来像这样:
fig, axes = plt.subplots(nrows=2, ncols=2)
df1.plot('type_of_plot', ax=axes[0, 0]);
df2.plot('type_of_plot', ax=axes[0, 1]);
df3.plot('type_of_plot', ax=axes[1, 0]);
第4个子图是空的,我希望第3个子图占据整个最后一行。
我尝试了第三个子图的各种轴组合。与axes[1]
,axes[1:]
,axes[1,:]
一样。但是一切都会导致错误。
那么我怎样才能达到我的目的呢?
答案 0 :(得分:2)
你可以这样做:
import matplotlib.pyplot as plt
fig=plt.figure()
a=fig.add_axes((0.05,0.05,0.4,0.4)) # number here are coordinate (left,bottom,width,height)
b=fig.add_axes((0.05,0.5,0.4,0.4))
c=fig.add_axes((0.5,0.05,0.4,0.85))
df1.plot('type_of_plot', ax=a);
df2.plot('type_of_plot', ax=b);
df3.plot('type_of_plot', ax=c);
plt.show()
我给你的rect
坐标不是很易读,但你可以很容易地调整它。