是否可以为 L'abbé 图中的“点”着色?我正在使用 metafor 包。
# Load package
library(metafor)
# Load data
data(dat.bcg)
# Code
ex <- rma(ai=tpos, bi=tneg, ci=cpos,
di=cneg, data=dat.bcg, measure="OR",
slab=paste(author, year, sep=", "), method="FE")
# L'abbé plot
labbe(ex, transf = exp, ylab="Test group", xlab="Control")
是否可以根据变量为点着色?
Fx 蓝色点表示:
dat.bcg$alloc==random
谢谢你,C。