使用卡方分布作为验证假设的基础。
它有两个参数:
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()
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!