#' Data Process - `data/z.rda`
#'
DataProcessZ <- function() {
rproj <- rprojroot::is_rstudio_project
set.seed(42)
z <- stats::rnorm(
n = 100
)
save(
z,
file = rproj$find_file(
"data",
"z.rda"
),
compress = FALSE
)
}
DataProcessZ()
rm(DataProcessZ)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.