python-numpy-指数分布实例详解
作者:云金杞 时间:2022-01-14 07:00:32
如下所示:
# 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()
来源:https://blog.csdn.net/qq_26948675/article/details/79602546
标签:python,numpy,指数分布
0
投稿
猜你喜欢
画好线框图的20个步骤
2009-09-01 19:46:00
浅谈一下基于Pytorch的可视化工具
2022-12-28 23:08:07
sqlserver数据库移动数据库路径的脚本示例
2024-01-28 05:06:49
OpenCV根据面积筛选连通域学习示例
2022-12-03 03:48:42
Python操作redis和mongoDB的方法
2023-01-01 17:06:34
Python基于SMTP发送邮件的方法
2021-07-17 23:42:46
Python实现多进程的四种方式
2022-03-14 10:48:46
以一段代码为实例快速入门Python2.7
2021-04-24 05:00:06
python multiply()与dot使用示例讲解
2021-08-14 19:34:52
WEB移动应用框架构想
2010-09-28 16:26:00
老生常谈Python startswith()函数与endswith函数
2023-06-03 02:02:42
使用Python 统计文件夹内所有pdf页数的小工具
2022-07-06 23:21:46
python基于 Web 实现 m3u8 视频播放的实例
2022-06-15 22:16:40
Python pip安装第三方库实现过程解析
2022-01-04 02:17:31
Python实现将mp3音频格式转换为wav格式
2023-09-18 15:50:02
Go语言sync包与锁实现限制线程对变量的访问
2024-02-21 13:52:29
JS操作Cookies包括(读取添加与删除)
2024-06-15 04:13:26
vue2.0+webpack环境的构造过程
2024-05-08 10:42:00
Python Django2.0集成Celery4.1教程
2023-10-17 21:28:52
详解Python中如何将数据存储为json格式的文件
2023-11-01 02:42:11