gpt4 book ai didi

r - 如何在 Rmarkdown 文件中包含 DiagrammeR/mermaid 流程图

转载 作者:行者123 更新时间:2023-12-04 11:28:07 24 4
gpt4 key购买 nike

我有一个 R Markdown 文件:

---
title: "Untitled"
author: "Me"
output: html_document
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
## R Markdown
This is an R Markdown document.

以及 DiagrammeR/美人鱼图表:
graph LR
A-->B

如何在 R-markdown 中添加图表?

最佳答案

其实很简单:

title: "Untitled"
author: "Me"
output: html_document
---

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
## R Markdown
This is an R Markdown document.

```{r}
library(DiagrammeR)
mermaid("
graph LR
A-->B
")
```

关于r - 如何在 Rmarkdown 文件中包含 DiagrammeR/mermaid 流程图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40803017/

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