You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using a cleaned person-period file, estimate transition probabilities for each time-varying covariate of interest and the 4 states.
The 4-state model: healthy [1], mild disability [2], moderate disability [3], and death [4]. The only reverse transition allowed is [2] -> [1].
This can be modelled using logit or probit. All evolving covariates are binary and can be modelled using logit or survival models.
The ordering of the transition models is as the following
DisabilityState = Age + Sex + Education + v1 + v2 + v3 + v4
v4 = Age + Sex + Education + v1 + v2 + v3
v3 = Age + Sex + Education + v1 + v2
v2 = Age + Sex + Education + v1
v1 = Age + Sex + Education
[Q1]: How to link the 4-state transition model with the other transition models?
Transition matrices are calculated and stored. Now, generate a starting population of size N using a bootstrapped approach.
We have our transition matrices and our starting population. Now, we simulate. *In the complex case, this will be done for each of the time-varying covariates and the ultimately the 4-state model.
This process repeats itself for 15 simulation cycles (years)
Output: Aggregated counts in each state. Dis-aggregated counts by covariates.