网络编程
位置:首页>> 网络编程>> Python编程>> python-numpy-指数分布实例详解

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

作者:云金杞  发布时间:2022-01-14 07:00:32 

标签:python,numpy,指数分布

如下所示:


# 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

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com