Transition Hazards for Exponential Event Times
Source:R/transitionParameters.R
exponential_transition.Rd
This creates a list with class TransitionParameters
containing
hazards, time intervals and Weibull rates for exponential event times
in an illness-death model.
Examples
exponential_transition(1, 1.6, 0.3)
#> $hazards
#> $hazards$h01
#> [1] 1
#>
#> $hazards$h02
#> [1] 1.6
#>
#> $hazards$h12
#> [1] 0.3
#>
#>
#> $intervals
#> $intervals$pw01
#> [1] 0
#>
#> $intervals$pw02
#> [1] 0
#>
#> $intervals$pw12
#> [1] 0
#>
#>
#> $weibull_rates
#> $weibull_rates$p01
#> [1] 1
#>
#> $weibull_rates$p02
#> [1] 1
#>
#> $weibull_rates$p12
#> [1] 1
#>
#>
#> $family
#> [1] "exponential"
#>
#> attr(,"class")
#> [1] "ExponentialTransition" "TransitionParameters"