Last chance! 50% off unlimited learning
Sale ends in
### load BCG vaccine data
data(dat.bcg)
### meta-analysis of the log relative risks using a fixed-effects model
res <- rma(ai=tpos, bi=tneg, ci=cpos, di=cneg,
data=dat.bcg, measure="RR", method="FE")
radial(res)
### line from (0,0) with slope equal to the log relative risk from the 4th study
abline(a=0, b=c(-1.44155119))
### meta-analysis of the log relative risks using a random-effects model
res <- rma(ai=tpos, bi=tneg, ci=cpos, di=cneg,
data=dat.bcg, measure="RR", method="REML")
radial(res)
Run the code above in your browser using DataLab