Nothing
cran_tz <- "Europe/Vienna"
pkg_state <- new.env(parent = emptyenv())
#' Clean cache
#'
#' Clean cache to download repository data again.
#' @details
#' Cleans the package's environment used for caching the data.
#' @returns Returns `NULL`.
#' @examples
#' clean_cache()
#'
#' @export
clean_cache <- function() {
pkg_state <- new.env(parent = emptyenv())
NULL
}
PACKAGE_FIELDS <- c("Depends", "Imports", "LinkingTo", "Suggests", "Enhances")
BASE <- tools::standard_package_names()$base
.onAttach <- function(libname, pkgname) {
opts <- options(repos = c("@CRAN@" = "https://CRAN.R-project.org"))
pkg_state$opts <- opts
}
.onDetach <- function(libpath) {
options(pkg_state$opts)
}
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.