Learn R Programming

meta (version 6.2-1)

weights.meta: Calculate absolute and percentage weights for meta-analysis

Description

This function returns a data frame containing information on absolute and percentage weights of individual studies contributing to common effect and random effects meta-analysis.

Usage

# S3 method for meta
weights(
  object,
  common = object$common,
  random = object$random,
  warn.deprecated = gs("warn.deprecated"),
  ...
)

Value

A data frame with the following variables is returned:

VariableDefinitionCondition
w.commonabsolute weights in common effect model(if common = TRUE)
p.commonpercentage weights in common effect model(if common = TRUE)
w.randomabsolute weights in random effects model(if random = TRUE)
p.randompercentage weights in random effects model(if random = TRUE)

Arguments

object

An object of class meta.

common

A logical indicating whether absolute and percentage weights from the common effect model should be calculated.

random

A logical indicating whether absolute and percentage weights from the random effects model should be calculated.

warn.deprecated

A logical indicating whether warnings should be printed if deprecated arguments are used.

...

Additional arguments (to catch deprecated arguments).

See Also

metabin, metacont, metagen

Examples

Run this code
data(Fleiss1993cont)
# Do meta-analysis (common effect and random effects model)
#
meta1 <- metacont(n.psyc, mean.psyc, sd.psyc, n.cont, mean.cont, sd.cont,
  data = Fleiss1993cont, studlab = paste(study, year), sm = "SMD")

# Print weights for common effect and random effects meta-analysis
#
weights(meta1)

# Do meta-analysis (only random effects model)
#
meta2 <- update(meta1, common = FALSE)

# Print weights for random effects meta-analysis
#
weights(meta2)

# Print weights for common effect and random effects meta-analysis
#
weights(meta2, common = TRUE)

Run the code above in your browser using DataLab