coef.coxph_mpl | R Documentation |
summary
Extract the coefficients of the model part of interest of a coxph_mpl
object, and the matrix of coefficients of the model part of interest and
corresponding standard errors, z
-statistics and p
-values of a
summary.coxph_mpl
object.
## S3 method for class 'coxph_mpl'
coef(object, parameters="Beta",...)
## S3 method for class 'summary.coxph_mpl'
coef(object, parameters="Beta",...)
object |
an object inheriting from class |
parameters |
the set of parameters of interest. Indicate |
... |
other arguments. |
When the input is of class summary.coxph_mpl
and parameters=="Theta"
,
only the parameter estimates larger than min.Theta
(see
coxph_mpl.control
) are reported.
a vector of coefficients or a matrix of coefficients with standard errors, z-statistics and corresponding p-values.
Dominique-Laurent Couturier, Maurizio Manuguerra
coxph_mpl
and summary.coxph_mpl
.
## Not run:
data(lung)
fit_mpl <- coxph_mpl(Surv(time, status == 2) ~ age + sex + ph.karno + wt.loss, data = lung)
coef(fit_mpl)
coef(summary(fit_mpl))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.