Learn R Programming

meta (version 0.81)

trimfill: Trim and fill method for meta-analysis

Description

Trim and fill method for estimating and adjusting for the number and outcomes of missing studies in a meta-analysis.

Usage

trimfill(x, seTE, left=NULL, ma.fixed=TRUE,
         type="L", n.iter.max=50,
         sm=NULL, studlab=NULL,
         silent=TRUE)

Arguments

x
An object of class meta, or estimated treatment effect in individual studies.
seTE
Standard error of estimated treatment effect (mandatory if x not of class meta).
left
A logical indicating whether studies are suppossed to be missing on the left or right side of the funnel plot. If NULL, the linear regression test for funnel plot symmetry (i.e., function metabias(..., meth="linreg")) is used to determine
ma.fixed
A logical indicating whether a fixed or random effects model is used to estimate the number of missing studies.
type
A character indicating which method is used to estimate the number of missing studies. Either "L" or "R".
n.iter.max
Maximum number of iterations to estimate number of missing studies.
sm
An optional character string indicating underlying summary measure, e.g., "RD", "RR", "OR", "WMD", "SMD"; ignored if x is of class meta.
studlab
An optional vector with study labels; ignored if x is of class meta.
silent
A logical indicating whether bassic information on iterations shown.

Value

  • An object of class c("metagen", "meta", "trimfill"). The object is a list containing the following components:
  • studlab, sm
  • left, ma.fixedAs defined above.
  • type, n.iter.max
  • TE, seTEEstimated treatment effect and standard error of individual studies.
  • w.fixed, w.randomWeight of individual studies (in fixed and random effects model).
  • TE.fixed, seTE.fixedEstimated overall treatment effect and standard error (fixed effect model).
  • TE.random, seTE.randomEstimated overall treatment effect and standard error (random effects model).
  • kNumber of studies combined in meta-analysis.
  • QHeterogeneity statistic Q.
  • tauSquare-root of between-study variance (moment estimator of DerSimonian-Laird).
  • methodPooling method: "Inverse".
  • callFunction call.
  • n.iterActual number of iterations to estimate number of missing studies.
  • trimfillA logical vector indicating studies that have been added by trim and fill method.
  • k0Number of studies added by trim and fill.

Details

The trim and fill method can be used for estimating and adjusting for the number and outcomes of missing studies in a meta-analysis. The method relies on scrutiny of one side of a funnel plot for asymmetry assumed due to publication bias.

The function metagen is called internally.

References

Duval S & Tweedie R (2000), A nonparametric "Trim and Fill" method of accounting for publication bias in meta-analysis. Journal of the American Statistical Association, 95, 89--98.

Duval S & Tweedie R (2000), Trim and Fill: A simple funnel-plot-based method of testing and adjusting for publication bias in meta-analysis. Biometrics, 56, 455--463.

See Also

metagen, metabias, funnel

Examples

Run this code
data(Fleiss93)
meta1 <- metabin(event.e, n.e, event.c, n.c,
                 data=Fleiss93, sm="OR")
tf1 <- trimfill(meta1)
summary(tf1)
funnel(tf1, pch=ifelse(tf1$trimfill, 1, 16))

Run the code above in your browser using DataLab