select_kmdata | R Documentation |
Select publication data sets based on study characteristics including outcome, sample size, treatment arms, journal, disease, etc.
select_kmdata(..., return = c("name", "key", "data"))
... |
an expression to be evaluated within |
return |
type of object to return; one of |
names(kmdata_key)
select_kmdata(ReportedSampleSize < 100)
select_kmdata(grepl('folfiri', Arms) & Outcome == 'OS')
select_kmdata(ReportedSampleSize < 100 |
Cancer %in% c('Lung/Colorectal', 'Prostate'))
## get a list of the data sets
l <- select_kmdata(ReportedSampleSize < 100, return = 'data')
op <- par(mfrow = sort(n2mfrow(length(l))))
sapply(l, kmplot)
par(op)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.