summary.coxph_mpl {survivalMPL} | R Documentation |
Summarise a coxph_mpl Object
Description
Additional information about the Cox proportional hazard model fit represented
by object
is extracted and included in the returned object, which
is suitable for printing with the generic print
function. The generic
coef
function will extract the matrix of coefficients of interest
with standard errors, z
-statistics and p
-values.
See coef.summary.coxph_mpl
.
Only the baseline hazard parameters larger than min.Theta
(see
coxph_mpl.control
) are reported.
Usage
## S3 method for class 'coxph_mpl'
summary(object, se="M2QM2", full=FALSE, ...)
## S3 method for class 'summary.coxph_mpl'
print(x, se="M2QM2", ...)
Arguments
object |
In an object inheriting from class |
se |
an inference method. Possibilites are |
full |
logical. If |
x |
an object inheriting from class |
... |
Other arguments passed through to printing functions. |
Value
an object of class summary.coxph_mpl
representing the fit and additional
information.
Beta |
a matrix of |
Theta |
If |
inf |
a list of elements extracted from the object of class |
Author(s)
Dominique-Laurent Couturier, Maurizio Manuguerra
See Also
coxph_mpl
, coxph_mpl.control
,
coxph_mpl.object
and plot.coxph_mpl
.
Examples
## Not run:
data(lung)
fit_mpl <- coxph_mpl(Surv(time, status == 2) ~ age + sex + ph.karno + wt.loss, data = lung)
summary(fit_mpl, full = TRUE)
summary(fit_mpl, se = "M2HM2")
## End(Not run)