matplotlib.pyplot plt.hist() 绘制概率图时,概率和不为1的问题(已解决)

2021/4/24 18:28:32

本文主要是介绍matplotlib.pyplot plt.hist() 绘制概率图时,概率和不为1的问题(已解决),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

数据是10,000个随机投掷的骰子

uni_data = np.random.randint(1, 7, 10000)

直方图
在这里插入图片描述
直接用density=1,y轴的概率值是不对的
在这里插入图片描述
方法一:用bins修正,同时修正了x刻度对不齐的问题

plt.hist(uni_data,bins=np.arange(0.5, 7.5), edgecolor='w',density=1) 

在这里插入图片描述

方法二:给bins增加权重(参考)

weights = np.ones_like(uni_data )/float(len(uni_data ))
plt.hist(uni_data, weights=weights)

在这里插入图片描述



这篇关于matplotlib.pyplot plt.hist() 绘制概率图时,概率和不为1的问题(已解决)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程