statsmodels.stats.meta_analysis.HomogeneityTestResult#
- class statsmodels.stats.meta_analysis.HomogeneityTestResult(statistic, pvalue, df, distribution)[source]#
Result of
CombineResults.test_homogeneity.- Parameters:
- statistic
float Test statistic,
qin meta-analysis, this is the pearson_chi2 statistic for the fixed effects model.- pvalue
float p-value based on the chisquare distribution.
- df
float Degrees of freedom, equal to the number of studies or samples minus 1.
- distribution
str Name of the reference distribution used for pvalue,
"chi2".
- statistic
- Attributes:
- df
- distribution
- pvalue
- statistic
Notes
Unpacks as
statistic, pvalue = result. Other values are only accessible using attributes.Methods
Properties