View source: R/governance-reports.R
| create_gazepoint_reproducibility_report | R Documentation |
Create a reproducibility report
create_gazepoint_reproducibility_report(
objects = list(),
data = NULL,
seeds = list(),
notes = character(),
project_path = getwd()
)
objects |
Named objects to fingerprint. |
data |
Optional data frame to fingerprint. |
seeds |
Named list of deterministic seeds. |
notes |
Optional reproducibility notes. |
project_path |
Project directory recorded in the report. |
A gp3ml_reproducibility_report object containing runtime information, object and data fingerprints, seeds, Git metadata, notes, and prohibited uses.
example_data <- data.frame(
trial_id = sprintf("T%02d", 1:6),
fixation_duration = c(190, 205, 198, 214, 202, 220),
stringsAsFactors = FALSE
)
report <- create_gazepoint_reproducibility_report(
objects = list(
fixation_values = example_data$fixation_duration
),
data = example_data,
seeds = list(example = 101L),
notes = "Synthetic documentation example.",
project_path = tempdir()
)
report
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.