Summary Method for marCoxph Objects
# S3 method for marCoxph
summary(object, conf_level = 0.95, round.digits = 4, style = "prints", ...)If style = "prints", returns invisibly. If style = "returns",
returns a list with:
Named vector of log hazard ratio estimates.
Named vector of lower CI bounds on log scale.
Named vector of upper CI bounds on log scale.
Named vector of standard errors on log scale (from variance_method).
Named vector of hazard ratio estimates (original scale).
Named vector of lower CI bounds on original scale.
Named vector of upper CI bounds on original scale.
Variance method used.
Confidence level used.
Named vector of sample sizes per group in Cox model.
Named vector of event counts per group in Cox model.
A marCoxph object.
Confidence level for intervals. Default 0.95.
Number of digits for rounding displayed values. Default 4.
Only used if style = "prints".
Output style: "prints" (print formatted tables) or "returns" (return vectors). Default "prints".
Additional arguments (ignored).
Confidence intervals are Wald-type intervals calculated as:
Log scale: logHR ± z_crit * SE
Original scale: exp(logHR ± z_crit * SE)
The SE used depends on variance_method from the original marCoxph call:
"robust": Uses logHR_se_robust from sandwich estimator.
"bootstrap-full" or "bootstrap-strata": Uses logHR_se_bootstrap.