Nothing
libr_unused <- \(script = NULL) {
if (is.null(script)) script <- rstudioapi::getActiveDocumentContext()$path
called <- c(libr_called(script), "base")
utilized <- libr_used(script)
libr_unused <- setdiff(called, utilized)
installed_packages <- installed.packages()[, "Package"]
libr_unused <- intersect(libr_unused, installed_packages)
return(libr_unused)
}
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.