分析bins = np.arange(11) plt.hist(sample, bins=bins, align='left', rwidth=0.1, density=True)
时间: 2023-05-28 09:03:28 浏览: 98
Bin法数据分析 代码
这段代码使用numpy中的arange函数生成一个从0到10的数组,用于设置直方图的边界。然后使用matplotlib中的hist函数绘制直方图,其中sample为输入数据,bins为边界数组,align设置直方图边缘对齐方式为左对齐,rwidth设置每个直方图柱子的宽度为0.1,density设置为True,表示对数据进行归一化处理,使直方图的面积为1。
阅读全文