R中的森林图的轴刻度标记

时间:2012-12-18 15:51:44

标签: r plot range forestplot

我在rmeta包中用forestplot制作了一个情节。请注意,水平轴没有刻度线。我怎么能在0.5

的间隔添加它们

以下是情节:plot

代码:

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

1 个答案:

答案 0 :(得分: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"))