Я бы просто сжал график в конечном выводе до размеров 0 x 0, используя параметры чанка out.width
и out.height
.(См. Эту великолепную документацию для всех опций чанка: https://yihui.name/knitr/options/#plots).
Например:
---
title: "SO Answer"
author: "duckmayr"
date: "9/24/2019"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
Here's how to make the figure with the caption but without the plot:
```{r pressure, fig.cap='Here is a figure caption.', out.width=0, out.height=0}
plot(pressure)
```
Обновление:Где находятся файлы графиков?
Если вы добавите строку, такую как
knitr::opts_chunk$set(fig.path = "figures/")
, к блоку setup
выше, графики будут сохранены в подкаталоге figures/
. Например,, после вязания
---
title: "SO Answer"
author: "duckmayr"
date: "9/24/2019"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
knitr::opts_chunk$set(fig.path = "figures/")
```
Here's how to make the figure with the caption but without the plot:
```{r pressure, fig.cap='Here is a figure caption.', out.width=0, out.height=0}
plot(pressure)
```
я могу видеть файлы в ~/figures/
:
[duckmayr@duckmayr-pc ~]$ ls ~/figures/
pressure-1.png
(Так как вы вяжете в PDF, по умолчанию ваши изображения графика также будут сохранены какPDF, а не PNG).