Как включить DiagrammeR/ русалка в файл Rmarkdown
У меня есть файл уценки R:
---
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-уценку?
1 ответ
На самом деле это тривиально:
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
")
```