0

如何在置信区间列(3d 列)上方添加标题:“OR [CI 95%]”,在第一列上方添加标题“Cohort”?

这是我的代码:

library(metafor)

y <- scan(what=numeric())
0.9158 
0.6304

se <- scan(what=numeric())
-0.08461987
-0.165519


meta_analysis <- rma(y,se^2,method="REML")

forest.rma(meta_analysis,xlab="Odds Ratio", slab=c("GoKind","EDIC"))
4

1 回答 1

2
forest.rma(meta_analysis,xlab="Odds Ratio", slab=c("GoKind","EDIC"))
text(-0.4, 4, "Cohort", pos=1)
text( 1.85, 3.5, "OR [95% CI]", pos=2)

文本中的第一个和第二个值指定沿 x 和 y 轴的距离

于 2018-12-18T02:48:31.490 回答