gpt4 book ai didi

r - 在Word文档中使用DiagrammeR(使用rMarkdown生成)

转载 作者:行者123 更新时间:2023-12-02 03:16:10 28 4
gpt4 key购买 nike

我一直在研究diagrammeR包(http://rich-iannone.github.io/DiagrammeR/)来在rMarkdown中生成图表。当以 HTML 格式呈现文档时,这非常有用;现在我的问题是是否有可能将文档输出为 MS Word 文档?

例如,考虑一下:

---
title: "Test"
author: "Test"
date: "Monday, May 18, 2015"
output: html_document
---

```{r, echo=FALSE, warning=FALSE}
if (!require("DiagrammeR")) library("DiagrammeR")
```

Check out this diagram:

```{r, echo=FALSE, results='asis'}
DiagrammeR::grViz("
digraph rmarkdown {
node [shape = box ]
'A' -> 'B'
}
")
```

使用 HTML 作为输出格式就像一个魅力。但是,当我切换到 MS Word 时,我得到的只是:

Error: Functions that produce HTML output found in document targeting docx output.
Please change the output type of this document to HTML.

任何想法将不胜感激。

非常感谢,菲利普

最佳答案

trelliscope 很有用:https://github.com/tesseradata/trelliscope

安装后http://phantomjs.org/download.html ,您可以通过以下方式生成word doc文件:

---
title: "Test"
author: "Test"
date: "Monday, May 18, 2015"
output: word_document
---

```{r include=FALSE}
if (!require("DiagrammeR")) library("DiagrammeR")
library(trelliscope)
```


Check out this diagram:

```{r, include=FALSE}
p = DiagrammeR::grViz("
digraph rmarkdown {
node [shape = box ]
'A' -> 'B'
}
")
widgetThumbnail(p, paste0(getwd(), "/hoge.png"))
```

![](hoge.png)

这是屏幕截图。看起来很完美:)

enter image description here

关于r - 在Word文档中使用DiagrammeR(使用rMarkdown生成),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30307191/

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