作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 for 循环创建一堆 ggplot2 图,然后将它们保存在多页 pdf 文档中,但我在使用 marrangeGrob 时遇到了问题。下面是一些示例代码:
Plots <- list()
Plots[[1]] <- qplot(mtcars$mpg, mtcars$wt)
Plots[[2]] <- qplot(mtcars$cyl, mtcars$wt)
Plots[[3]] <- qplot(mtcars$mpg, mtcars$qsec)
Plots[[4]] <- qplot(mtcars$cyl, mtcars$drat)
# install.packages("gridExtra", dependencies = TRUE)
library(gridExtra)
MyPlots <- do.call(marrangeGrob, c(Plots, nrow = 1, ncol = 2))
ggsave("My plots on multiple pages.pdf", MyPlots)
do.call(marrangeGrob...
过去的一行并让它们工作,但是现在,当我尝试执行该行时出现此错误:
Error: nrow * ncol >= n is not TRUE
.与此类似的代码曾经可以工作这一事实使我认为这些包之一中的某些内容已经更新。对于如何解决这个问题,有任何的建议吗?
最佳答案
新的 grobs
的语法略有变化。争论。你应该使用
marrangeGrob(grobs=Plots, nrow = 1, ncol = 2)
do.call(marrangeGrob, list(grobs=Plots, nrow = 1, ncol = 2))
关于r - marrangeGrob 为 nrow 给出错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33352508/
我有一个绘图列表,并且正在使用 marrangeGrob 每页编写多个绘图。这给了我每页 6 个图: marrangeGrob(plots, nrow=3, ncol=2, top=NULL) 但我需
我正在尝试使用 for 循环创建一堆 ggplot2 图,然后将它们保存在多页 pdf 文档中,但我在使用 marrangeGrob 时遇到了问题。下面是一些示例代码: Plots = n is n
gridExtra 中的 marrangeGrob 在行、列和页面中排列 grob(在我的例子中通常是 ggplots)。它还对页面进行编号。 require(ggplot2) require(ply
我正在制作一些每页上有多个图形的 pdf 文件,并且当我使用 gridextra 包中的 marrangeGrob 来制作这些图形时,第一页始终是空白的。如何使绘图从第一页开始?下面是一些示例代码:
我想在多个页面上使用以下 layout_matrix 排列图。 代表例如 library(gridExtra) library(ggplot2) layout 0, p[[i]] <
我是一名优秀的程序员,十分优秀!