Description Usage Arguments Value Examples
Create a data table describing the health states for the model.
1 | create_states(object)
|
object |
A |
A data table with the following columns:
The state ID number.
The state name,
A long-form state name.
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_states(struct1)
struct2 <- model_structure(txseqs, n_states = "three")
create_states(struct2)
txseqs <- txseq_list(seq1 = txseq1, seq2 = txseq2,
start_line = "second", mutation = "negative")
struct3 <- model_structure(txseqs, n_states = "three")
create_states(struct3)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.