Nothing
Change the knit root directory to the temporary R session.
knitr::opts_knit$set("root.dir" = tempdir())
getwd()
## [1] "/tmp/RtmpOJQVHt"
library("reticulate")
matplotlib <- import("matplotlib")
reticulate::py_config()
## python: /home/tomasz/.virtualenvs/r-reticulate/bin/python
## libpython: /usr/lib/python3.10/config-3.10-x86_64-linux-gnu/libpython3.10.so
## pythonhome: /home/tomasz/.virtualenvs/r-reticulate:/home/tomasz/.virtualenvs/r-reticulate
## version: 3.10.12 (main, Nov 20 2023, 15:14:05) [GCC 11.4.0]
## numpy: /home/tomasz/.virtualenvs/r-reticulate/lib/python3.10/site-packages/numpy
## numpy_version: 1.26.3
The R plot is saved relative to the location of the Rmd file:
plot(1:10)
The Python plot is also saved relative to the location of the Rmd file (not root.dir):
import matplotlib.pyplot as plt
x = range(1, 10)
plt.plot(x, x)
knitr::opts_knit$get("root.dir")
## [1] "/tmp/RtmpOJQVHt"
( file.exists(file.path(knitr::opts_knit$get("root.dir"), "figure", "r-plot-1.png"))) #stop("figure saved in wrong place")
## [1] FALSE
( file.exists(file.path(knitr::opts_knit$get("root.dir"), "figure", "py-plot-1.png"))) #stop("figure saved in wrong place")
## [1] FALSE
(!file.exists(file.path(knitr::opts_knit$get("output.dir"), "figure", "r-plot-1.png"))) #stop("figure saved in wrong place")
## [1] FALSE
(!file.exists(file.path(knitr::opts_knit$get("output.dir"), "figure", "py-plot-1.png"))) #stop("figure saved in wrong place")
## [1] FALSE
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.