python-numpy-指数分布实例详解


Posted in Python onDecember 07, 2019

如下所示:

# Seed random number generator
np.random.seed(42)
 
# Compute mean no-hitter time: tau
tau = np.mean(nohitter_times)
 
# Draw out of an exponential distribution with parameter tau: inter_nohitter_time
inter_nohitter_time = np.random.exponential(tau, 100000)
 
# Plot the PDF and label axes
_ = plt.hist(inter_nohitter_time,
    bins=50, normed=True, histtype='step')
_ = plt.xlabel('Games between no-hitters')
_ = plt.ylabel('PDF')
 
# Show the plot
plt.show()

指数分布的拟合

# Create an ECDF from real data: x, y
x, y = ecdf(nohitter_times)
 
# Create a CDF from theoretical samples: x_theor, y_theor
x_theor, y_theor = ecdf(inter_nohitter_time)
 
# Overlay the plots
plt.plot(x_theor, y_theor)
plt.plot(x, y, marker='.', linestyle='none')
 
# Margins and axis labels
plt.margins(0.02)
plt.xlabel('Games between no-hitters')
plt.ylabel('CDF')
 
# Show the plot
plt.show()

以上这篇python-numpy-指数分布实例详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python中文竖排显示的方法
Jul 28 Python
Python爬虫框架Scrapy实战之批量抓取招聘信息
Aug 07 Python
python字符类型的一些方法小结
May 16 Python
举例讲解Python中metaclass元类的创建与使用
Jun 30 Python
手把手教你如何安装Pycharm(详细图文教程)
Nov 28 Python
Python 爬虫实现增加播客访问量的方法实现
Oct 31 Python
python flask搭建web应用教程
Nov 19 Python
Django多数据库配置及逆向生成model教程
Mar 28 Python
python ssh 执行shell命令的示例
Sep 29 Python
python 实现图片裁剪小工具
Feb 02 Python
如何在pycharm中快捷安装pip命令(如pygame)
May 31 Python
Pygame Time时间控制的具体使用详解
Nov 17 Python
Python Sympy计算梯度、散度和旋度的实例
Dec 06 #Python
python实现输入的数据在地图上生成热力图效果
Dec 06 #Python
python 画3维轨迹图并进行比较的实例
Dec 06 #Python
解决pyshp UnicodeDecodeError的问题
Dec 06 #Python
python创建ArcGIS shape文件的实现
Dec 06 #Python
使用pyshp包进行shapefile文件修改的例子
Dec 06 #Python
利用pyshp包给shapefile文件添加字段的实例
Dec 06 #Python
You might like
怎么样可以把 phpinfo()屏蔽掉?
2006/11/24 PHP
PHP版微信小店接口开发实例
2016/11/12 PHP
jQuery each()方法的使用方法
2010/03/18 Javascript
关于图片按比例自适应缩放的js代码
2011/10/30 Javascript
再谈querySelector和querySelectorAll的区别与联系
2012/04/20 Javascript
jquery等宽输出文字插件使用介绍
2013/09/18 Javascript
如何判断鼠标是否在DIV的区域内
2013/11/13 Javascript
jQuery构造函数init参数分析
2015/05/13 Javascript
你不知道的高性能JAVASCRIPT
2016/01/18 Javascript
Kendo Grid editing 自定义验证报错提示的解决方法
2016/11/18 Javascript
JS html时钟制作代码分享
2017/03/03 Javascript
Vue 中mixin 的用法详解
2018/04/23 Javascript
ES6 Map结构的应用实例分析
2019/06/26 Javascript
详解如何在Vue项目中发送jsonp请求
2019/10/25 Javascript
浅谈vuex为什么不建议在action中修改state
2020/02/02 Javascript
Vue发布订阅模式实现过程图解
2020/04/30 Javascript
Vue实现点击当前行变色
2020/12/14 Vue.js
js实现简单的倒计时
2021/01/28 Javascript
[08:53]DOTA2每周TOP10 精彩击杀集锦vol.9
2014/06/26 DOTA
Python构造函数及解构函数介绍
2015/02/26 Python
详解一种用django_cache实现分布式锁的方式
2019/09/01 Python
python 魔法函数实例及解析
2019/09/25 Python
python实现二分类和多分类的ROC曲线教程
2020/06/15 Python
python实现画图工具
2020/08/27 Python
详解HTML5中的标签
2015/06/19 HTML / CSS
探索HTML5本地存储功能运用技巧
2016/03/02 HTML / CSS
诺心蛋糕官网:LE CAKE
2018/08/25 全球购物
Otticanet美国:最顶尖的世界名牌眼镜, 能得到打折季的价格
2019/03/10 全球购物
美国在线轮胎零售商:SimpleTire
2019/04/08 全球购物
C#面试问题
2016/07/29 面试题
外语学院毕业生的自我鉴定
2013/11/28 职场文书
安全生产计划书
2014/05/04 职场文书
夫妻房产协议书的格式
2014/10/11 职场文书
稽核岗位职责
2015/02/10 职场文书
python绘图subplots函数使用模板的示例代码
2021/04/30 Python
python基础之文件处理知识总结
2021/05/23 Python