如何用熊猫绘制年龄分布图

时间:2016-07-01 12:55:21

标签: python pandas group-by pandas-groupby

我有数据框,其中包含2列:年龄和性别。

sex,age
1,30
2,29
1,34
1,27
2,28
2,28
1,40
1,30
1,27
2,31
1,37
1,31
2,28
2,30
2,27
2,27
2,29
2,32
1,28
1,27
1,28
1,28
1,29
1,33
1,32
1,30

我如何绘制每个性别的年龄分布?

1 个答案:

答案 0 :(得分:13)

groupby然后plotkind='kde'

df1.groupby('sex').age.plot(kind='kde')

enter image description here

Per @EdChum

df1.groupby('sex').age.hist()

enter image description here