three_state_mm | R Documentation |
General purpose function to run a standard three-state Markov model (typically used in cancer modelling). The states are typically 'Pre-progression', 'Progressed' and 'Death'. No backward transition from 'Progressed' to 'Pre-progression' is allowed and 'Death' is obviously an absorbing state. All other transitions are possible. The crucial assumption is that individual-level data are available recording an indicator and the time of progression and death for each individual. The function returns the full transition matrix
three_state_mm(
m_12,
m_13,
m_23,
nsim = 1,
start = c(1000, 0, 0),
basecase = FALSE,
...
)
m_12 |
A 'survHE' object (output to a call to |
m_13 |
A 'survHE' object (output to a call to |
m_23 |
A 'survHE' object (output to a call to |
nsim |
The number of simulations for the model parameters that are
used to compute the survival curves. Defaults to |
start |
A vector of initial state occupancy. By default assumes 1000 individuals, all initially allocated to 'Pre-progression' |
basecase |
Should the base case be computed as well, based on the point estimate of the underlying model parameters? (Default=FALSE) |
... |
additional arguments. |
A list including the state occupancy simulations in an object 'm'.
This is a tibble with the number of individuals in each of the 3 states
at each of the times specified by the user. If nsim
>1, then the tibble
also contains a simulation index to keep track of that. The list also
includes the computation time to obtain the state occupancy tibble (in the
object 'running_time'). If basecase==TRUE
, then the function also
computes the "base case scenario" (based on 1 simulation from of the
underlying survival curves, i.e. the point estimate of the model parameters)
and stores it in the object 'base_case'
Something will go here
Gianluca Baio
Something will go here
make.transition.probs make_data_multi_state
## Not run:
# Something will go here
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.