Boxplot由python pandas中的列分层

时间:2014-04-23 01:02:00

标签: python matplotlib pandas boxplot

我想为以下pandas数据框画一个箱线图:

> p1.head(10)

   N0_YLDF    MAT
0     1.29  13.67
1     2.32  10.67
2     6.24  11.29
3     5.34  21.29
4     6.35  41.67
5     5.35  91.67
6     9.32  21.52
7     6.32  31.52
8     3.33  13.52
9     4.56  44.52

我希望箱图位于列'N0_YLDF'列中,但它们应该按照' MAT'进行分层。当我使用foll时。命令:

p1.boxplot(column='N0_YLDF',by='MAT')

它使用所有唯一的MAT值,在完整的p1数据帧数约为15,000。这导致了一个难以理解的箱形图。

我有什么方法可以对MAT值进行分层,这样我就可以得到不同的第二个MAT值的N0_YLDF箱图等等......

谢谢!

2 个答案:

答案 0 :(得分:8)

Pandas拥有cutqcut函数,可以轻松实现这样的分层变量:

# Just asking for split into 4 equal groups (i.e. quartiles) here,
# but you can split on custom quantiles by passing in an array
p1['MAT_quartiles'] = pd.qcut(p1['MAT'], 4, labels=['0-25%', '25-50%', '50-75%', '75-100%'])
p1.boxplot(column='N0_YLDF', by='MAT_quartiles')

输出:

enter image description here

答案 1 :(得分:6)

pandas.qcut将为您提供分位数,但类似于直方图的操作将需要一些numpy技巧,这在这里派上用场:

_, breaks = np.histogram(df.MAT, bins=5)
ax = df.boxplot(column='N0_YLDF', by='Class')
ax.xaxis.set_ticklabels(['%s'%val for i, val in enumerate(breaks) if i in df.Class])

enter image description here

数据框现在看起来像这样:

   N0_YLDF    MAT  Class
0     1.29  13.67      1
1     2.32  10.67      0
2     6.24  11.29      1
3     5.34  21.29      1
4     6.35  41.67      2
5     5.35  91.67      5
6     9.32  21.52      1
7     6.32  31.52      2
8     3.33  13.52      1
9     4.56  44.52      3

[10 rows x 3 columns]

它也可用于获取四分位图:

breaks = np.asarray(np.percentile(df.MAT, [25,50,75,100]))
df['Class'] = (df.MAT.values > breaks[..., np.newaxis]).sum(0)
ax = df.boxplot(column='N0_YLDF', by='Class')
ax.xaxis.set_ticklabels(['%s'%val for val in breaks])

enter image description here