python 使用卡方的假设检验器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 使用卡方的假设检验器相关的知识,希望对你有一定的参考价值。

"""
scipy manual: http://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.chisquare.html
"""

from scipy.stats import chisquare
# calculate frequencies
freq_data = np.histogram(data,normed=True,bins=range(0,30,1))[0] 
chisquare(freq_data)
# Power_divergenceResult(statistic=1.7350936497601266, pvalue=0.99999999999930067)

以上是关于python 使用卡方的假设检验器的主要内容,如果未能解决你的问题,请参考以下文章

python实现卡方(Chi-Squared Test)相关性检验

python数据分析之卡方检验T检验方差分析

python数据分析之卡方检验T检验方差分析

卡方检验spss结果没有了连续性校正?

白话“卡方检验”

spss里面卡方检验的结果怎么解释啊