gpt4 book ai didi

r - 使用 Word 输出在 R Markdown 文档中循环 Flextables

转载 作者:行者123 更新时间:2023-12-04 10:53:35 26 4
gpt4 key购买 nike

我希望在单个 R Markdown 文档中打印多个 flextables。这在使用 html 输出时并不具有挑战性,但我需要 Word 输出。

对于 html 输出,以下 R Markdown 代码(示例取自 https://davidgohel.github.io/flextable/articles/offcran/examples.html#looping-in-r-mardown-documents )生成一个包含多个 Flextables 的文档:

---
output:
html_document: default

---

```{r}
library(htmltools)
library(flextable)

ft <- flextable(head(iris))
tab_list <- list()
for(i in 1:3){
tab_list[[i]] <- tagList(
tags$h6(paste0("iteration ", i)),
htmltools_value(ft)
)
}
tagList(tab_list)
```

我一直无法使用 Word 文档输出获得等效的输出。
中提出的解决方案
How to knit_print flextable with loop in a rmd file同样适用于 html 输出,但我无法使用 Word 输出正确呈现它。

任何有关与上述示例等效的 R Markdown Word 文档输出的建议都会非常有帮助!

最佳答案

您需要使用 flextable::docx_value和块选项 results='asis'

---
title: "Untitled"
output: word_document
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
library(flextable)
```

```{r results='asis'}
ft <- flextable(head(iris))
for(i in 1:3){
cat("<w:p/>")## add this to add an empty new paragraph between tables
flextable::docx_value(ft)
}
```

关于r - 使用 Word 输出在 R Markdown 文档中循环 Flextables,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58173966/

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