gpt4 book ai didi

R:使用 marrangeGrob 在空白首页制作 pdf 结果

转载 作者:行者123 更新时间:2023-12-02 01:52:22 24 4
gpt4 key购买 nike

我正在制作一些每页上有多个图形的 pdf 文件,并且当我使用 gridextra 包中的 marrangeGrob 来制作这些图形时,第一页始终是空白的。如何使绘图从第一页开始?下面是一些示例代码:

library(gridextra)
library(ggplot2)
data(iris)

Plotlist <- list()

Plotlist[[1]] <- ggplot(data = subset(iris, Species == "setosa"),
aes(x = Sepal.Width, y = Sepal.Length)) +
geom_point()

Plotlist[[2]] <- ggplot(data = subset(iris, Species == "versicolor"),
aes(x = Sepal.Width, y = Sepal.Length)) +
geom_point()

Plotlist[[3]] <- ggplot(data = subset(iris, Species == "virginica"),
aes(x = Sepal.Width, y = Sepal.Length)) +
geom_point()

pdf("iris.pdf", width = 8.5, height = 11)
marrangeGrob(Plotlist, nrow = 2, ncol = 1)
dev.off()

pdf 的第二页甚至在顶部写着“第 1 页,共 2 页”,因此某处存在一些脱节。

最佳答案

我的猜测是,ggplot2 最近发生了一些变化,调用网格函数来评估需要开放设备的网格单元。

您可以尝试此解决方法,

glist <- lapply(Plotlist, ggplotGrob)
ggsave("iris.pdf", marrangeGrob(glist, nrow = 2, ncol = 1))

关于R:使用 marrangeGrob 在空白首页制作 pdf 结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41813198/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com