A generic function to print the MiceExtVal model
Usage
# S3 method for class 'MiceExtVal'
print(x, ...)Examples
model_cox <- mv_model_cox(
formula = event ~ 0.5 * (x - 1) + 0.3 * (z - 2),
S0 = 0.98765
)
print(model_cox)
#>
#> ── <MiceExtVal/cox> ────────────────────────────────────────────────────────────
#>
#> ── formula ──
#>
#> event ~ 0.5 * (x - 1) + 0.3 * (z - 2)
#>
#> ── S0 ──
#>
#> 0.98765
model_logreg <- mv_model_logreg(formula = event ~ 0.5 * x + 0.3 * z - 1.2)
print(model_logreg)
#>
#> ── <MiceExtVal/logreg> ─────────────────────────────────────────────────────────
#>
#> ── formula ──
#>
#> event ~ 0.5 * x + 0.3 * z - 1.2