modify_transMat | R Documentation |
A function that upgrades the transMat object so that the population and excess-related transitions are included in the transition matrix.
modify_transMat(trans, split.transitions)
trans |
The original transition matrix (usually generated using function transMat from mstate). Also often present in the msfit object. |
split.transitions |
The transitions that should be split. |
An upgraded transition matrix that contains the population and excess transitions.
Damjan Manevski damjan.manevski@mf.uni-lj.si
transMat
# transition matrix for illness-death model
trans <- transMat(list(c(2,3),c(4), c(), c()),
names = c("Alive", "Relapse","Non-relapse mortality", "Death after relapse"))
split.transitions <- c(2,3)
modify_transMat(trans, split.transitions)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.