请看下面的例子:基于forestplot
包帮助文档:
library(forestplot)
# DATA
row_names <- list(list("test = 1", expression(test >= 2)))
test_data <- data.frame(coef=c(1.59, 1.24),
low=c(1.4, 0.78),
high=c(1.8, 1.55))
# Graph
graph1 <- forestplot(row_names,
test_data$coef,
test_data$low,
test_data$high,
lineheight = "auto",
xlab = "Lab axis txt")
该图也保存为graph1
. 但是,当我重新加载graph1
dev.off()
graph1
我没有图表,但以下内容:
> graph1
GRID.VP.34::forestplot_margins
我想知道这是包的性质还是我在我的机器上安装的任何一个R
或Rstudio
其他包的问题。看来我对ggplot2
图表没有这样的问题。任何意见,将不胜感激。