Description Usage Arguments Value See Also Examples
Create a list of objects of class "txseq".
1 2 | txseq_list(..., start_line = c("first", "second"),
mutation = c("unknown", "positive", "negative"))
|
... |
Objects to form a list. |
start_line |
The starting line of treatmnet that is being modeled. When modeling second line treatment, the first line must be specified in order to characterize a treatment history; however, note that disease transition model cannot currently be simulated for models starting at second line because the evidence base is too limited. |
mutation |
T790M mutation status. If the model starts at first line, then
this must be |
An object of class "txseq_list", which is a list of objects of class.
start_line
and mutation
are stored as attributes.
1 2 3 4 5 6 7 8 9 10 | 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)
class(txseqs)
print(txseqs$seq1)
attributes(txseqs)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.