"rma"
.## S3 method for class 'rma':
radial(x, center=FALSE, xlim=NULL, zlim=NULL, xlab=NULL, zlab=NULL,
atz=NULL, aty=NULL, steps=7, level=x$level, digits=2,
back="lightgray", transf=FALSE, targs=NULL, pch=19,
arc.res = 100, cex=NULL, ...)
"rma"
.FALSE
).NULL
, which means that the function tries to set the x axis limits to some sensible values.NULL
, which means that the function tries to set the z axis limits to some sensible values (note that the z axis limits are the actual vertical limit of the plotting region).NULL
, which means that a label is generated by the function.NULL
, which means that a label is generated by the function.NULL
, which means that these are set by the function.NULL
, which means that these are set by the function.aty
is used.NA
to suppress shading of the region.transf=exp
). Defaults to FALSE
, which means that no transformation is used.transf
.points
for other options.NULL
(default), the function tries to set this to a sensible value.rma.uni
, rma.mh
, rma.peto
,### load BCG vaccine data
data(dat.bcg)
### meta-analysis of the log risk rates 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 of the log risk rate from the fourth study
abline(a=0, b=c(-1.44155119))
### meta-analysis of the log risk rates 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