我读了一个类似的问题,帮助我达到了我现在的目标,但我正在努力进行下一步。我有一个类似于下面的数据框 -
Product = c("Apple", "Apple", "Banana", "Banana", "Banana", "Carrot",
"Carrot")
Category = c(1, 2, 1, 2, 3, 1, 2)
Slope = c(2.988, 2.311, 2.181, 6.387, 2.615, 7.936, 3.267)
df = data.frame(Product, Category, Slope)
我的目标是为每个产品提供一个包含表格的Word报告。为此,我创建了一个包含数据和flextables的列表,如下所示 -
library(tidyverse)
library(flextable)
library(officer)
test <- df %>%
group_by(Product) %>%
nest() %>%
mutate(data$Product)
mutate(ftables = map(data, flextable)) %>%
mutate(ftables = map(ftables, ~ bg(.,
bg = '#bfbfbf',
part = 'header')))
然后我可以将其传递给像这样的词 -
my_doc <- read_docx()
for (i in seq_along(test$ftables)) {
body_add_flextable(my_doc, test$ftables[[i]]) %>%
body_add_par(value = "")
}
输出很棒,但遗憾的是我失去了识别每个表所属产品的方法。
我想要将产品名称作为标题或在表格中。无所谓,但我无法弄清楚如何做。
我试图寻找方法来重新引入分组后的字段后嵌套,并尝试将标题的for循环加倍,但最后只是重复每个标题下的所有表格 -
for (i in seq_along(test$ProductLine)) {
my_doc <- body_add_par(my_doc, value = test$ProductLine[[i]], style =
'heading 1') %>%
body_add_par(value = "")
for (j in seq_along(test$ftables)) {
my_doc <- body_add_flextable(my_doc, test$ftables[[i]])
}
}
有人知道我能做到这一点吗?
答案 0 :(得分:2)
在第二次尝试循环时,不要添加第一个循环,只需将命令添加到链中......
Product = c("Apple", "Apple", "Banana", "Banana", "Banana", "Carrot",
"Carrot")
Category = c(1, 2, 1, 2, 3, 1, 2)
Slope = c(2.988, 2.311, 2.181, 6.387, 2.615, 7.936, 3.267)
df = data.frame(Product, Category, Slope)
library(tidyverse)
library(flextable)
library(officer)
test <-
df %>%
group_by(Product) %>%
nest() %>%
mutate(ftables = map(data, flextable)) %>%
mutate(ftables = map(ftables, ~ bg(.,
bg = '#bfbfbf',
part = 'header')))
my_doc <- read_docx()
for (i in seq_along(test$Product)) {
my_doc <-
my_doc %>%
body_add_par(value = test$Product[[i]], style = 'heading 1') %>%
body_add_par(value = "") %>%
body_add_flextable(test$ftables[[i]]) %>%
body_add_par(value = "")
}
print(my_doc, target = "my_doc.docx")