Generate a structured validation certificate documenting the BORG analysis for reproducibility and audit trails.
Value
A borg_certificate object containing:
meta: Package version, R version, timestampdata: Data characteristics and hashdiagnosis: Dependency type, severity, recommended CVcv_strategy: CV type and fold countinflation: Theoretical and empirical estimates
See also
borg_export for writing certificates to file.
Examples
set.seed(42)
data <- data.frame(
x = runif(100, 0, 100),
y = runif(100, 0, 100),
response = rnorm(100)
)
diagnosis <- borg_diagnose(data, coords = c("x", "y"), target = "response",
verbose = FALSE)
cert <- borg_certificate(diagnosis, data)
print(cert)