#' Preprocessor incubatortemp data
#'
#' Just copy from input to output
#'
#' @param input directory from which to read the data
#' @param output directory to which to write the data
#'
#' @return invisibly \code{TRUE} when completed successful
#'
#' @export
pre_processor_incubatortemp <- function(
input,
output
) {
message("\n########################################################\n")
message("\nProcessing incubatortemp...\n")
##
dir.create(
file.path(output, "incubatortemp"),
recursive = TRUE,
showWarnings = FALSE
)
file.copy(
from = file.path(input, "incubatortemp", "."),
to = file.path(output, "incubatortemp"),
recursive = TRUE
)
##
message("done\n")
message("\n########################################################\n")
invisible(TRUE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.