如何在R markdown中导入用户生成的图片时添加默认目录

时间:2017-08-25 21:22:22

标签: r-markdown

我知道我可以在.Rmd文件中包含用户生成的图片,例如:

!["Title of my picture goes here"](path/to/my/image/picture001.png)

我想知道是否有自动包含路径的方式,因此我只需要写!["Title of my picture goes here"](picture001.png)而R Markdown会搜索 picture001。 png 路径/到/ my / image /

1 个答案:

答案 0 :(得分:0)

尝试将默认目录设置为r setup chunk中的全局选项:

```{r setup, include=FALSE}
knitr::opts_chunk$set(fig.path='path/to/my/image/', echo = TRUE)
```