我正试图隐藏我们在森林地块右侧看到的信息(ES(95%CI))。 我在R使用metafor包。
代码如下
library(metafor)
par(mar=c(4,4,1,2))
res <- rma(ai=tpos, bi=tneg, ci=cpos, di=cneg, data=dat.bcg, measure="RR",
slab=paste(author, year, sep=", "), method="REML")
forest(res, xlim=c(-16, 6), at=log(c(0.05, 0.25, 1, 4)), atransf=exp,
ilab=cbind(dat.bcg$tpos, dat.bcg$tneg, dat.bcg$cpos, dat.bcg$cneg),
ilab.xpos=c(-9.5,-8,-6,-4.5), cex=0.75, ylim=c(-1, 27),
order=order(dat.bcg$alloc), rows=c(3:4,9:15,20:23),
xlab="Risk Ratio", mlab="", psize=1)
在手册中找不到此选项。有人成功吗?
答案 0 :(得分:1)
您可以使用annotate=FALSE
中的参数forest()
隐藏“注释”。看看help(forest.rma)
。