meta.sub.spear: Confidence interval for a subgroup difference in average...

View source: R/meta_comp.R

meta.sub.spearR Documentation

Confidence interval for a subgroup difference in average Spearman correlations

Description

Computes the estimate, standard error, and confidence interval for a difference in average Spearman correlations for two mutually exclusive subgroups of studies. Each subgroup can have one or more studies.

Usage

meta.sub.spear(alpha, n, cor, group)

Arguments

alpha

alpha level for 1-alpha confidence

n

vector of sample sizes

cor

vector of estimated Spearman correlations

group

vector of group indicators:

  • 1 for set A

  • 2 for set B

  • 0 to ignore

Value

Returns a matrix with three rows:

  • Row 1 - estimate for Set A

  • Row 2 - estimate for Set B

  • Row 3 - estimate for difference, Set A - Set B

The columns are:

  • Estimate - estimated average correlation or difference

  • SE - standard error

  • LL - lower limit of the confidence interval

  • UL - upper limit of the confidence interval

References

\insertRef

Bonett2008avcmeta

Examples

n <- c(55, 190, 65, 35)
cor <- c(.40, .65, .60, .45)
group <- c(1, 1, 2, 0)
meta.sub.spear(.05, n, cor, group)

# Should return:
#                Estimate         SE         LL        UL
# Set A:            0.525 0.06483629  0.3865928 0.6402793
# Set B:            0.600 0.08829277  0.3992493 0.7458512
# Set A - Set B:   -0.075 0.10954158 -0.2760700 0.1564955



dgbonett/vcmeta documentation built on July 12, 2024, 3:12 p.m.