meta.chitest {vcmeta}R Documentation

Computes a chi-square test of effect-size homogeneity

Description

Computes a chi-square test of effect size homogeneity and p-value using effect-size estimates and their standard errors from two or more studies. This test should not be used to justify the use of a constant coeffient (fixed-effect) meta-analysis.

Usage

meta.chitest(est, se)

Arguments

est

vector of effect-size estimates

se

vector of effect-size standard errors

Value

Returns a one-row matrix:

References

Borenstein M, Hedges LV, Higgins JP, Rothstein HR (2009). Introduction to meta-analysis. Wiley, New York.

Examples

est <- c(.297, .324, .281, .149) 
se <- c(.082, .051, .047, .094)
meta.chitest(est, se)

# Should return:
#         Q df         p
#  2.706526  3 0.4391195



[Package vcmeta version 1.3.0 Index]