Print method for audit results.
Usage
# S3 method for class 'morie_audit_result'
print(x, ...)Examples
# \donttest{
spec <- function(nm, dt, vv = NULL) list(name = nm, dtype = dt, valid_values = vv)
specs <- list(v1 = list(spec("UniqueIndividual_ID", "string"),
spec("NumberConsecutiveDays_Segregation", "int")))
res <- morie_audit_otis_variables(specs)
res$domain
#> [1] "otis"
print(res)
#> morie variable-coverage audit - OTIS
#> ====================================
#> Total variables 2
#> Currently analysed 2
#> Coverage 100.0%
#> Cross-year-unsafe 0
#> Identifiers 1
#> Outcomes 0
#>
#> Audited 2 variable(s). Currently analysed: 2 (100.0%); not exercised by any analyzer: 0. 0 flagged cross_year_safe=FALSE. 1 identifier column(s), 0 outcome column(s).
# }
