summary_cure {CureDepCens} | R Documentation |
Print the summary output
Description
Print the summary output
Usage
summary_cure(object, ...)
Arguments
object |
an object of the class "dcensoring". |
... |
further arguments passed to or from other methods. |
Value
a summary of the fitted model.
Examples
library(CureDepCens)
delta_t = ifelse(Dogs_MimicData$cens==1,1,0)
delta_c = ifelse(Dogs_MimicData$cens==2,1,0)
fit <- cure_dep_censoring(formula = time ~ x1_cure + x2_cure | x_c1 + x_c2,
data = Dogs_MimicData,
delta_t = delta_t,
delta_c = delta_c,
ident = Dogs_MimicData$ident,
dist = "mep")
summary_cure(fit)
[Package CureDepCens version 0.1.0 Index]