#' Nouveau projet R
#' Création d'une arborescence pour structure les projets
#'
#' @return NA
#' @export
#'
#' @examples
new_project <- function(){
dir.create("data")
dir.create("./data/raw")
dir.create("./data/processed")
dir.create("output")
dir.create("./output/tables")
dir.create("./output/figures")
dir.create("R")
dir.create("./R/fct")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.