熊猫情节,结合两个情节

时间:2016-08-17 06:06:17

标签: python pandas matplotlib

目前我有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,:]一样。但是一切都会导致错误。

那么我怎样才能达到我的目的呢?

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()

另见documentation of add_axes

我给你的rect坐标不是很易读,但你可以很容易地调整它。

编辑:这是我得到的:enter image description here