(string
)
the method used for estimation of p.values; wald
(default) or likelihood
.
(string
)
among exact
(equivalent to DISCRETE
in SAS), efron
and breslow
,
see survival::coxph()
. Note: there is no equivalent of SAS EXACT
method in R.
(proportion
)
confidence level of the interval.
(flag
)
if TRUE
, the model includes the interaction between the studied
treatment and candidate covariate. Note that for univariate models without treatment arm, and
multivariate models, no interaction can be used so that this needs to be FALSE
.
A list
of items with names corresponding to the arguments.
control_coxreg()
#> $pval_method
#> [1] "wald"
#>
#> $ties
#> [1] "exact"
#>
#> $conf_level
#> [1] 0.95
#>
#> $interaction
#> [1] FALSE
#>