指定df.plot中的bean数量(kind ='hist')

时间:2017-10-18 12:43:53

标签: python pandas plot histogram

我有一个数据框df

我希望将分组变量的直方图绘制为

df.groupby(['Variable1', 'Variable2']).plot(kind='hist')

有没有办法指定垃圾箱的数量?

1 个答案:

答案 0 :(得分:1)

DataFrameGroupBy.hist中使用参数bins

df.groupby(['Variable1', 'Variable2']).plot.hist(bins=3)
  

bins :整数,默认为10

     

要使用的直方图箱数