Skip to contents

Create a manifest of the environment for reproducibility

Usage

create_reproducibility_manifest(data, parameters = NULL, seeds = NULL)

Arguments

data

Data frame (used for a SHA-256 checksum).

parameters

Optional list of analysis parameters.

seeds

Optional named list of random seeds.

Value

An object of class "class_name".

Examples

d <- data.frame(x = 1:5)
mf <- create_reproducibility_manifest(d, parameters = list(seed = 1),
                                      seeds = list(global = 1L))
mf$r_version
#> [1] "R version 4.6.1 (2026-06-24)"