Description Usage Arguments Value Examples
Create a transition matrix describing patient transitions between health states.
1 | create_trans_mat(object)
|
object |
A |
A transition matrix of the same format as in the mstate package.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | txseq1 <- txseq(first = "erlotinib",
second = c("osimertinib", "PBDC"),
second_plus = c("PBDC + bevacizumab", "PBDC + bevacizumab"))
txseq2 <- txseq(first = "gefitinib",
second = c("osimertinib", "PBDC"),
second_plus = c("PBDC + bevacizumab", "PBDC + bevacizumab"))
txseqs <- txseq_list(seq1 = txseq1, seq2 = txseq2)
struct1 <- model_structure(txseqs, n_states = "four")
create_trans_mat(struct1)
struct2 <- model_structure(txseqs, n_states = "three")
create_trans_mat(struct2)
txseqs <- txseq_list(seq1 = txseq1, seq2 = txseq2,
start_line = "second", mutation = "positive")
struct3 <- model_structure(txseqs, n_states = "three")
create_trans_mat(struct3)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.