标签: python pandas plot histogram
我有一个数据框df
df
我希望将分组变量的直方图绘制为
df.groupby(['Variable1', 'Variable2']).plot(kind='hist')
有没有办法指定垃圾箱的数量?
答案 0 :(得分:1)
在DataFrameGroupBy.hist中使用参数bins:
DataFrameGroupBy.hist
bins
df.groupby(['Variable1', 'Variable2']).plot.hist(bins=3)
bins :整数,默认为10 要使用的直方图箱数
bins :整数,默认为10
要使用的直方图箱数