9

我有一个熊猫数据框,例如:

In [61]: df = DataFrame(np.random.rand(3,4), index=['art','mcf','mesa'],
                        columns=['pol1','pol2','pol3','pol4'])

In [62]: df
Out[62]: 
          pol1      pol2      pol3      pol4
art   0.661592  0.479202  0.700451  0.345085
mcf   0.235517  0.665981  0.778774  0.610344
mesa  0.838396  0.035648  0.424047  0.866920

我想用跨基准策略的平均值生成一行,然后绘制它。

目前,我这样做的方式是:

df = df.T
df['average'] = df.apply(average, axis=1)
df = df.T
df.plot(kind='bar')

有没有一种优雅的方法来避免双重换位?

我试过:

df.append(DataFrame(df.apply(average)).T)
df.plot(kind='bar')

这将附加正确的值,但不会正确更新索引并且图表会混乱。

一个澄清。双转置的代码结果是这样的:在此处输入图像描述 这就是我想要的。显示政策的基准和平均值,而不仅仅是平均值。我只是好奇我能不能做得更好。

请注意,图例通常是混乱的。修复:

ax = df.plot(kind='bar')
ax.legend(patches, list(df.columns), loc='best')
4

1 回答 1

14

您可以简单地使用 and 的实例方法meanDataFrame不是绘制结果。不需要转置。

In [14]: df.mean()
Out[14]: 
pol1    0.578502
pol2    0.393610
pol3    0.634424
pol4    0.607450

In [15]: df.mean().plot(kind='bar')
Out[15]: <matplotlib.axes.AxesSubplot at 0x4a327d0>

政策.png

更新

如果要绘制所有列的条形图和平均值,则可以append表示:

In [95]: average = df.mean()

In [96]: average.name = 'average'

In [97]: df = df.append(average)

In [98]: df
Out[98]: 
             pol1      pol2      pol3      pol4
art      0.661592  0.479202  0.700451  0.345085
mcf      0.235517  0.665981  0.778774  0.610344
mesa     0.838396  0.035648  0.424047  0.866920
average  0.578502  0.393610  0.634424  0.607450

In [99]: df.plot(kind='bar')
Out[99]: <matplotlib.axes.AxesSubplot at 0x52f4390>

第二个情节

如果您的布局不适合子图,tight_layout将调整 matplotlib 参数。

于 2012-12-15T09:36:15.513 回答