statsmodels.stats.meta_analysis.HomogeneityTestResult#

class statsmodels.stats.meta_analysis.HomogeneityTestResult(statistic, pvalue, df, distribution)[source]#

Result of CombineResults.test_homogeneity.

Parameters:
statisticfloat

Test statistic, q in meta-analysis, this is the pearson_chi2 statistic for the fixed effects model.

pvaluefloat

p-value based on the chisquare distribution.

dffloat

Degrees of freedom, equal to the number of studies or samples minus 1.

distributionstr

Name of the reference distribution used for pvalue, "chi2".

Attributes:
df
distribution
pvalue
statistic

Notes

Unpacks as statistic, pvalue = result. Other values are only accessible using attributes.

Methods

Properties