1

请看下面的例子:基于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 

我想知道这是包的性质还是我在我的机器上安装的任何一个RRstudio其他包的问题。看来我对ggplot2图表没有这样的问题。任何意见,将不胜感激。

4

0 回答 0