我有想要做直方图的数据,但我希望直方图从给定值开始,并且要修复条形的宽度。例如,对于系列[1,3,5,10,12,20,21,25],我想要而不是
>>> p.Series([1, 3, 5, 10, 12, 20, 21, 25]).hist(bins=3).figure
# | |
# | | |
# | | |
# 0 8.5 17
我希望条的宽度为10:
| |
| | |
| | |
0 10 20
我该怎么做?
编辑:我最终得到了我想要的
答案 0 :(得分:30)
我认为
p.Series([1, 3, 5, 10, 12, 20, 21, 25]).hist(bins=[0, 10, 20, 30]).figure
会做你想要的。或者你可以做
p.Series([1, 3, 5, 10, 12, 20, 21, 25]).hist(bins=3, range=(0,30)).figure
hist
的{{3}}和np.histogram
的{{3}}。
我怀疑你也遇到了一些问题,因为它标记了垃圾箱的中心,而不是边缘。