| make_manifest | R Documentation |
Creates an empty manifest object that accumulates cross-check entries
via record() and is later serialized with write_manifest_json().
make_manifest(meta, environment = TRUE)
meta |
A named list of run metadata (e.g. |
environment |
Logical; when |
A manifest list with elements meta, an empty results
list, and (when requested) environment.
# Minimal manifest, no environment capture.
man <- make_manifest(list(project = "demo-study", author = "A. Author"),
environment = FALSE)
names(man) # "meta" "results"
man$meta$project
# With environment = TRUE it also records R version / platform / packages.
full <- make_manifest(list(project = "demo"), environment = TRUE)
names(full) # adds "environment"
full$environment$r_version
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.