比例相等的n样本测试python

时间:2017-09-15 20:43:15

标签: python scipy data-analysis

比例相等的n样本测试python

这种统计测试在R>中看起来非常简单。 http://sphweb.bumc.bu.edu/otlt/MPH-Modules/BS/R/R6_CategoricalDataAnalysis/R6_CategoricalDataAnalysis6.html

我看了scipy,它没有提供超过2个样本测试的统计工具

我正在寻找能够进行这种高级统计测试的python库。

1 个答案:

答案 0 :(得分:1)

我认为你想要做的是对不同类别之间比例的独立性进行卡方检验(见https://en.wikipedia.org/wiki/Pearson%27s_chi-squared_test#Testing_for_statistical_independence)。您可以使用函数scipy.stats.chi2_contingency在Python中执行此操作(有关文档,请参阅https://docs.scipy.org/doc/scipy/reference/generated/scipy.stats.chi2_contingency.html。)