NumPy(Numerical Python的缩写)是一个开源的Python科学计算库。使用NumPy,就可以很自然地使用数组和矩阵。NumPy包含很多实用的数学函数,涵盖线性代数运算、傅里叶变换和随机数生成等功能。本文主要介绍Python Numpy random.chisquare() 卡方分布。

1、卡方分布

使用卡方分布作为验证假设的基础。

它有两个参数:

df- (degree of freedom).

size-返回数组的形状。

例如:

画出一个样本,用于卡方分布,自由度为2,大小为2x3:

from numpy import random

x = random.chisquare(df=2, size=(2, 3))

print(x)

2、卡方分布的可视化

例如: 

from numpy import random
import matplotlib.pyplot as plt
import seaborn as sns

sns.distplot(random.chisquare(df=1, size=1000), hist=False)

plt.show()

Result

httpswwwcjavapycom

推荐文档