R metafor forestplot如何在列上方添加CI 95%标题

时间:2018-12-18 02:30:20

标签: r forestplot metafor

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

这是我的代码:

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"))

1 个答案:

答案 0 :(得分:0)

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轴的距离