Last chance! 50% off unlimited learning
Sale ends in
leave1out.rma.mh
and leave1out.rma.peto
repeatedly fit the specified model, leaving out one observation (i.e., 2x2 table) at a time.## S3 method for class 'rma.mh':
leave1out(x, digits=x$digits, transf=FALSE, \dots)
## S3 method for class 'rma.peto':
leave1out(x, digits=x$digits, transf=FALSE, \dots)
"rma.mh"
or "rma.peto"
."list.rma"
. The object is a list containing the following components:NA
if transf=TRUE
."list.rma"
object is formated and printed with print.list.rma
.leave1out
### load BCG vaccine data
data(dat.bcg)
### meta-analysis of the (log) relative risks using the Mantel-Haenszel method
res <- rma.mh(ai=tpos, bi=tneg, ci=cpos, di=cneg, data=dat.bcg, measure="RR")
leave1out(res)
leave1out(res, transf=TRUE)
### meta-analysis of the (log) odds ratios using Peto's method
res <- rma.mh(ai=tpos, bi=tneg, ci=cpos, di=cneg, data=dat.bcg)
leave1out(res)
leave1out(res, transf=TRUE)
Run the code above in your browser using DataLab