This is an auxiliary function for controlling arguments for Cox-PH model, typically used internally to specify
details of Cox-PH model for s_coxph_pairwise()
. conf_level
refers to Hazard Ratio estimation.
control_coxph(
pval_method = c("log-rank", "wald", "likelihood"),
ties = c("efron", "breslow", "exact"),
conf_level = 0.95
)
A list of components with the same names as the arguments.
(string
)
p-value method for testing hazard ratio = 1.
Default method is "log-rank"
, can also be set to "wald"
or "likelihood"
.
(string
)
string specifying the method for tie handling. Default is "efron"
,
can also be set to "breslow"
or "exact"
. See more in survival::coxph()
.
(proportion
)
confidence level of the interval.