How to insert plain picture (jpeg / png) from chunk with knitr How to insert plain picture (jpeg / png) from chunk with knitr r r

How to insert plain picture (jpeg / png) from chunk with knitr


When a figure is not generated from R code, you may use knitr::include_graphics() to insert it to the document, e.g.

```{r echo=FALSE, out.width='100%'}knitr::include_graphics('./cropped-banner_efpt.jpg')```