- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有不同的数据框提供相同因素的相同水平的信息。最终我想要一个 pdf,其中包含每个页面的 ggplot2 图、一个 gridExtra tableGrob 和文本作为标题,来自不同的数据框。每个页面将显示 1 个因素水平的信息。使用 cowplot 我设法很好地组织了 1 个页面,但我找不到一种方法来制作 for 循环或其他任何自动完成 ~1000 页的方法。
这是我的数据的可重现示例:
# Loading necessary packages
library(dplyr)
library(ggplot2)
library(grid)
library(gridExtra)
library(gtable)
library(cowplot)
# Creating first data frame df1
fact <- c("level1", "level1", "level1", "level1", "level1", "level1", "level2", "level2", "level2", "level2", "level2", "level2")
fact <- as.factor(fact)
x1 <- c("1A", "1A", "1A", "1B", "1B", "1B", "1A", "1A", "1A", "1B", "1B", "1B")
x2 <- c(0, 1, 5, 0, 1, 5, 0, 1, 5, 0, 1, 5)
x3 <- c(5, 2, 4, 5, 6, 3, 2, 5, 6, 4, 6, 8)
df1 <- cbind.data.frame(fact, x1, x2, x3)
# Creating second data frame df2
fact <- c("level1", "level1", "level2", "level2")
fact <- as.factor(fact)
x4 <- c("1A", "1B", "1A", "1B")
x5 <- c("good", "bad", "good", "good")
df2 <- cbind.data.frame(fact, x4, x5)
# filtering the data frames to keep 1 level of factor fact
i <- "level1"
df1_plot <- df1 %>% filter(fact == i)
df2_table <- df2 %>% filter(fact == i)
# defining ggplot graphs and gridExtra table
plot1 <- ggplot(data = df1_plot, aes(x = x2, y = x3, color = x1)) + geom_line()
plot2 <- ggplot(data = df1_plot, aes(x = x2, y = x3, color = x1)) + geom_point()
table1 <- tableGrob(df2_table, theme = ttheme_minimal(), rows = NULL)
# Plotting everything in place and adding the level (i) as title of the page
pdf(file = sprintf("%s.pdf", i), width = 9, height = 12, onefile = TRUE)
table_drawn <- ggdraw() + draw_grob(table1)
right_column <- plot_grid(table_drawn, plot1, labels = c("B", "C"), ncol = 1, rel_heights = c(1, 3), scale = 0.9)
bottom_row <- plot_grid(plot2, right_column, labels = c("A", ""), nrow = 1, rel_widths = c(1.5, 2))
title1 <- ggdraw() + draw_label(i, fontface='bold', x = 0, y = 0.5, hjust = 0, vjust = 1, size = 14)
upper_row <- plot_grid(title1, hjust = 0, ncol = 1)
plot_grid(upper_row, bottom_row, ncol=1, rel_heights=c(0.1, 1))
dev.off()
这个最小示例的结果很丑陋,对此我深表歉意!在我的真实数据中,它达到了 cowplot 非常棒的“出版物质量”。
所以理想情况下,我能够做到这一点,因为我轮流考虑因素“事实”的所有级别(这里是 2 个级别,在真实数据中 ~ 1000)...这是我(非常有限)的地方R 知识和对已回答问题的互联网探索结束。我应该使用 for 循环、创建列表、列表列表还是使用 dplyr group_by?
非常感谢任何帮助!
最佳答案
这是一个更简单的方法。首先,我们将两个数据帧绑定(bind)到一个数据帧中。然后在 lapply
中,我们按 fact
拆分数据框,并为 fact
的每个级别连续创建整个布局:
dat = bind_rows(df1, df2 %>% rename(x1=x4), .id="df")
lapply(split(dat, dat$fact), function(d) {
pdf(paste0(unique(d$fact),".pdf"),9,12)
p = ggplot(d %>% filter(df==1), aes(x2, x3, colour=x1))
grid.draw(plot_grid(p + geom_point(),
plot_grid(tableGrob(d %>% filter(df==2) %>% select(fact,x1,x5),
theme=ttheme_minimal(), rows=NULL),
p + geom_line(),
ncol=1, rel_heights=c(0.1,1)),
ncol=2))
dev.off()
})
除了 lapply
,您还可以使用 purrr
包中的 map
:
library(purrr)
split(dat, dat$fact) %>% map(function(d) {
[...same as above...]
})
这是两个图表中的第一个:
关于r - 多页,每页有几个 ggplot2 图表和表格,来自多个数据框,每个页面都是一个共同因素的水平,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41899496/
所以,我有一个类似于 this one 的用例,但我觉得有一些额外的细节值得提出一个新问题。 ( related questions ,供引用) 我正在编写一个实现 a cycle 的数据结构.基本设
我正在使用 Django 编写一个社交网络应用程序,需要实现类似于 Facebook“Mutual Friends”概念的功能。我有一个像这样的简单模型: class Friend(models.Mo
我有一个 iOS 应用程序,用户可以在其中使用 Facebook 登录并授予 user_friends 权限。从 Graph API 2.0 开始,Facebook 声称你无法获取两个人之间所有的共同
我想知道将来对我来说最简单的方法是什么,可以使查询既有效又不那么复杂。 我应该像这样保存双向关系吗 from_id=1, to_id=2from_id=2, to_id=1 或者只创建一个唯一的行 f
我是一名优秀的程序员,十分优秀!