Nothing
library(reticulate) python <- "~/.virtualenvs/python-3.7.7-venv/bin/python" if (file.exists(python)) use_python(python, required = TRUE)
import numpy as np import pandas as pd import seaborn as sns df = pd.DataFrame(np.random.rand(5, 2), columns=["x", "y"]) sns.scatterplot(data=df, x="x", y="y")
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.