从多索引数据框中选择列,例如制作直方图

时间:2019-06-12 10:31:19

标签: python pandas histogram multi-index

这是我第一次使用多索引数据框。我有一个看起来像这样的数据框(小例子):

import random
col3=[0,0,0,0,2,4,6,0,0,0,100,200,300,400]
col4=[0,0,0,0,4,6,8,0,0,0,200,900,400, 500]

d = {'Unit': [1, 1, 1, 1, 2, 2, 2, 3, 4, 5, 6, 6, 6, 6], 
 'Year': [2014, 2015, 2016, 2017, 2015, 2016, 2017, 2017, 2014, 2015, 2014, 2015, 2016, 2017], 'col3' : col3, 'col4' : col4 }
df = pd.DataFrame(data=d)
df.groupby(['Unit', 'Year']).sum()

df = df.groupby(['Unit', 'Year']).sum()

df['mask'] = (df.groupby(level=0, group_keys=False)
                  .apply(lambda x: x.col3/x.col4.shift()))

df['mask'] = df['mask'].fillna(0) 

现在我想例如根据mask列中的值制作直方图,是否可以不首先创建列表就可以做到这一点?

我是这样做的:

values = [x for x in df['mask']]
plt.hist(values)

但是我最好不使用中间列表步骤。

谢谢

Jen

1 个答案:

答案 0 :(得分:1)

这里不需要列表理解,只需将Series传递给plot

plt.hist(df['mask'])

或使用Series.plot.hist

df['mask'].plot.hist()