Nothing
libr_used <- \(script = NULL) {
if (is.null(script)) script <- rstudioapi::getActiveDocumentContext()$path
packages <-
sub("package:", "",
grep("package",
summary(
script |>
NCmisc::list.functions.in.file()
)[, 1] |>
names()
, value = T)
)
installed_packages <- installed.packages()[, "Package"]
packages <- intersect(packages, installed_packages)
return(packages)
}
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.