在RMarkdown中,当我插入使用程序包DiagrammeR创建的流程图时,结果发现图表周围(上方和下方)有很多空白。请问我该如何摆脱那个空白?
我尝试将fig.height用作块选项,但这无济于事。
---
title: "Untitled"
output:
pdf_document: default
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
## A flowchart
Some explaining text.
```{r echo = FALSE, message=FALSE, warning=FALSE}
library(DiagrammeR)
DiagrammeR("
graph LR
A-->B
A-->C
C-->E
B-->D
C-->D
D-->F
E-->F
")
```
More explaining text.
答案 0 :(得分:0)
尝试添加width =“ 100%”,height =“ 100%,像这样:
DiagrammeR("
graph LR
A-->B
A-->C
C-->E
B-->D
C-->D
D-->F
E-->F
", width = "100%", height = "100%)