年齢と性別の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
性別ごとに年齢分布をプロットするにはどうすればよいですか?
groupby then plot with kind='kde'
groupby
plot
kind='kde'
df1.groupby('sex').age.plot(kind='kde')
@EdChumごと
df1.groupby('sex').age.hist()