gpt4 book ai didi

python - 为什么 pandas 在我的直方图中插入空格?

转载 作者:太空狗 更新时间:2023-10-30 02:42:17 24 4
gpt4 key购买 nike

可以找到示例数据here CSV 格式。

给定以下代码:

figure()
grp.vis.plot(kind='hist', alpha=.5, normed=True)
show()

得到如下图:

enter image description here

为什么 pandas 在图中插入空隙?值范围从 0 到 7,并且都已表示,所以我看不出为什么会发生这种情况。

非常感谢!

最佳答案

因为默认值为 10 的参数 binshist 中:

grp.vis.plot(kind='hist', alpha=.5, bins=7, normed=True)

graph

如果省略rwidth:

grp.vis.plot(kind='hist', alpha=.5, bins=7)

graph1

Docs :

bins : integer or array_like, optional

If an integer is given, bins + 1 bin edges are returned, consistently with numpy.histogram() for numpy version >= 1.3.

Unequally spaced bins are supported if bins is a sequence.

default is 10

rwidth : scalar or None, optional

The relative width of the bars as a fraction of the bin width. If None, automatically compute the width.

Ignored if histtype is ‘step’ or ‘stepfilled’.

Default is None

关于python - 为什么 pandas 在我的直方图中插入空格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37160426/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com