| trimfill {metafor} | R Documentation |
Carry out a trim and fill analysis for objects of class "rma.uni".
trimfill(x, ...) ## S3 method for class 'rma.uni' trimfill(x, side, estimator="L0", maxiter=100, verbose=FALSE, ...)
x |
an object of class |
side |
either |
estimator |
either |
maxiter |
integer indicating the maximum number of iterations to use for the trim and fill method (the default is |
verbose |
logical indicating whether output should be generated on the progress of the iterative algorithm used as part of the trim and fill method (the default is |
... |
other arguments. |
The trim and fill method is a nonparametric (rank-based) data augmentation technique proposed by Duval and Tweedie (2000a, 2000b; see also Duval, 2005). The method can be used to estimate the number of studies missing from a meta-analysis due to the suppression of the most extreme results on one side of the funnel plot. The method then augments the observed data so that the funnel plot is more symmetric and recomputes the summary estimate based on the complete data. The trim and fill method can only be used in the context of a fixed- or random-effects model (i.e., in models without moderators). The method should not be regarded as a way of yielding a more "valid" estimate of the overall effect or outcome, but as a way of examining the sensitivity of the results to one particular selection mechanism (i.e., one particular form of publication bias).
An object of class c("rma.uni.trimfill","rma.uni","rma"). The object is a list containing the same components as objects created by rma.uni, except that the data are augmented by the trim and fill method. The following components are also added:
k0 |
estimated number of missing studies. |
side |
either |
se.k0 |
estimated standard error of k0. |
p.k0 |
p-value for the test of H_0: no missing studies on the chosen side (only when |
fill |
a logical vector, indicating which of the data are the observed ( |
The results of the fitted model after the data augmentation are printed with the print.rma.uni function. Calling funnel.rma on the object provides a funnel plot of the observed and augmented data.
Three different estimators for the number of missing studies were proposed by Duval and Tweedie (2000a, 2000b). Based on these articles and Duval (2005), "R0" and "L0" are recommended. An advantage of estimator "R0" is that it provides a test of the null hypothesis that the number of missing studies (on the chosen side) is zero.
Wolfgang Viechtbauer wvb@metafor-project.org
package website: http://www.metafor-project.org/
author homepage: http://www.wvbauer.com/
Duval, S. J., & Tweedie, R. L. (2000a). Trim and fill: A simple funnel-plot-based method of testing and adjusting for publication bias in meta-analysis. Biometrics, 56, 455–463.
Duval, S. J., & Tweedie, R. L. (2000b). 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. J. (2005). The trim and fill method. In H. R. Rothstein, A. J. Sutton, & M. Borenstein (Eds.) Publication bias in meta-analysis: Prevention, assessment, and adjustments (pp. 127–144). Chichester, England: Wiley.
Viechtbauer, W. (2010). Conducting meta-analyses in R with the metafor package. Journal of Statistical Software, 36(3), 1–48. http://www.jstatsoft.org/v36/i03/.
### meta-analysis of the log risk ratios using a fixed-effects model res <- rma(measure="RR", ai=tpos, bi=tneg, ci=cpos, di=cneg, data=dat.bcg, method="FE") res.tf <- trimfill(res) res.tf funnel(res.tf) ### estimator "R0" also provides test res.tf <- trimfill(res, estimator="R0") res.tf ### meta-analysis of the log risk ratios using a random-effects model res <- rma(measure="RR", ai=tpos, bi=tneg, ci=cpos, di=cneg, data=dat.bcg) res.tf <- trimfill(res) res.tf funnel(res.tf)