Nothing
#' Create Required Directory
#'
#' Creates a directory if it does not already exist.
#'
#' This function checks if the specified directory exists. If not, it creates
#' the directory recursively.
#'
#' @param folder A character string specifying the directory path to create.
#' @keywords internal
#'
#' @return NULL
#' @noRd
create_required_directory <- function(folder) {
if (!dir.exists(folder)) {
dir.create(folder, recursive = TRUE)
}
}
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.