我想按照这篇文章的内容做一些事情:R:将ggplot2图保存在列表
中问题是我无法让它工作。我似乎能够获得单独的图表,但facet_wrap
抛出了一个错误。我会满足于只输出所有图形,然后将它们以 jpg 或其他格式保存到磁盘,以便稍后滚动浏览它们。
for(n in 1:5){
pdata <- data.frame(mt1[n])
library(ggplot2)
p <-ggplot(pdata, aes(x=variable, y=value, color=Legend, group=Legend))+ geom_line()+ facet_wrap(~ color)
}
链接到dput
数据:mt1
编辑:添加了整个正确的文件,它有点长