summary.frailtyIllnessDeath: Summary of parameter estimates of a Weibull Illness-Death...

summary.frailtyIllnessDeathR Documentation

Summary of parameter estimates of a Weibull Illness-Death model with (or without) shared frailty between transitions.

Description

This function returns hazard rations (HR) and its confidence intervals

Usage

## S3 method for class 'frailtyIllnessDeath'
summary(object, level = 0.95, len = 6, d = 2,
                                 lab="hr",...)

Arguments

object

output from a call to frailtyIllnessDeath.

level

significance level of confidence interval. Default is 95%.

len

the total field width. Default is 6.

d

the desired number of digits after the decimal point. Default of 6 digits is used.

lab

label of printed results.

...

other unused arguments.

Value

Prints HR and its confidence intervals. Confidence level is allowed (level argument).

See Also

frailtyIllnessDeath

Examples


  



    ###--- Semi-Markovian Weibull Illness-Death model with left truncation ---###

    data(Paq810)

    ModIllnessDeath_LeftTrunc <- frailtyIllnessDeath(formula = Surv(e,r,dementia) ~ gender+certif,
    formula.terminalEvent = Surv(t,death) ~ gender+certif  ,
    data=Paq810, print.info = FALSE, maxit=100)

    #-- confidence interval at 95\% level (default)

    summary(ModIllnessDeath_LeftTrunc)

    #-- confidence interval at 99\% level

    summary(ModIllnessDeath_LeftTrunc,level=0.99)

  

frailtypack documentation built on Nov. 23, 2025, 1:09 a.m.