数据分析,使用plt.hist(runtime_data, num_bin_list)时出现ValueError: `bins` must increase monotonically, when a

Posted 1024-1006744360

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据分析,使用plt.hist(runtime_data, num_bin_list)时出现ValueError: `bins` must increase monotonically, when a相关的知识,希望对你有一定的参考价值。

技术图片

如上图:

bin必须是单调递增的

我所写的num_bin_list是这样的:1.6 0.5 0.5 0.5....(11个0.5)当然是不行

所以就进行了改变,其实愿意0.5是组距,看来bin表示的是刻度值吧,

技术图片

最后就没有报错了

 

以上是关于数据分析,使用plt.hist(runtime_data, num_bin_list)时出现ValueError: `bins` must increase monotonically, when a的主要内容,如果未能解决你的问题,请参考以下文章

从 plt.hist 中获取所有 bin 的中间

数据分析,使用plt.hist(runtime_data, num_bin_list)时出现ValueError: `bins` must increase monotonically, when a

Matplotlib(3直方图) - plt.hist()参数解释&应用实例

Matplotlib(3直方图) - plt.hist()参数解释&应用实例

Matplotlib1

python_将一组数据展示成直方图(以list为例)