web-dev-qa-db-ja.com

pandas)で年齢分布をプロットする方法

年齢と性別の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

性別ごとに年齢分布をプロットするにはどうすればよいですか?

6
dimazubrik

groupby then plot with kind='kde'

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

enter image description here

@EdChumごと

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

enter image description here

13
piRSquared