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

R metafor forestplot如何在列上方添加CI 95%标题,r,forestplot,metafor,R,Forestplot,Metafor,如何在置信区间列(3d列)上方添加标题:“或[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=

如何在置信区间列(3d列)上方添加标题:“或[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"))
库(metafor)
Y
文本中的第一个和第二个值指定沿x和y轴的距离

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

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)