Python/numpy random chisquare

来自菜鸟教程
跳转至:导航、​搜索

<languages />

卡尺分布

卡尺分布

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

它有两个参数:

df - (自由度)。

size -返回数组的形状。

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

  from numpy import random

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

print(x)

卡方分布的可视化

  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()

结果

文件:Chisquare1.png