Display Images from file in R Jupyter notebook
IRdisplay has functions to rich display "stuff", which includes images:
library("IRdisplay")
display_png(file="plot.png)
In a markdown cell as you usually would in a Jupyter Python notebook:
<img src="../relative/path/to/img.png">
or
![image](../relative/path/to/img.png)