1

我在 rmeta 包中有一个用 forestplot 制作的图。请注意,水平轴没有刻度线。我怎么能添加它们,比如说,间隔0.5

这是情节:阴谋

和代码:

Forest1 <- read.table(file="Forest_1.txt", sep="\t", head=TRUE, row.names=1)

tabletext<-rbind(c("A","3.77"),
             c("B","1.33"),
             c("C","1.32"),
     c("D","1.12"),
     c("E","1.58"),
     c("F","0.9"))
m <-Forest1$OR
l <-Forest1$lower
u <-Forest1$upper

#overview datafile:
cbind(tabletext, m,l,u)
                          m      l        u       
[1,] "A"         "3.77" "3.77" "0.6144" "6.9256"
[2,] "B"         "1.33" "1.33" "0.644"  "2.016" 
[3,] "C"         "1.32" "1.32" "0.6536" "1.9864"
[4,] "D"         "1.12" "1.12" "0.4536" "1.7864"
[5,] "E"         "1.58" "1.58" "1.0116" "2.1484"
[6,] "F"         "0.9"  "0.9"  "0.7236" "1.0764"

forestplot(tabletext,m,l,u, zero=1, xticks=c(0.2,7),col=meta.colors(box="royalblue",line="darkblue", summary="royalblue"))
4

1 回答 1

0

您应该使用以下内容修改您对 forestplot 的调用:

forestplot(tabletext,m,l,u, zero=1, xticks=c(0.2,.7,1.2,1.7,2.2,2.7,3.2,3.7,4.2,4.7,5.2,5.7,6.2,6.7,7),col=meta.colors(box="royalblue",line="darkblue", summary="royalblue"))
于 2018-10-07T10:11:04.957 回答