Description Usage Arguments Value Author(s) References Examples
Generate UpSet plots showing the overlaps among sets of significant feature for a given adjusted p-value threshold. Optionally, the truth can be included as a "perfect" method. Note that if the results are stratified, only one category at a time can be displayed.
1 2 3 4 5 6 7 8 |
cobraplot |
A |
stratum |
If results are stratified, the category to plot results for. Can be numeric or categorical (the name of the category). |
nsets |
The number of methods to include. By default, it is determined
automatically from the |
nintersects |
The number of set intersections to display. By default, it
is determined automatically from the |
sets.bar.color |
The colors to use for the bars in the UpSet plot. By
default, they are extracted from the |
... |
Additional arguments to |
Nothing, displays a graph
Charlotte Soneson
Lex and Gehlenborg (2014): Points of view: Sets and intersections. Nature Methods 11, 779.
Lex et al (2014): UpSet: Visualization of intersecting sets. IEEE Transactions on Visualization and Computer Graphics 20(12), 1983-1992.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | data(cobradata_example)
cobraperf <- calculate_performance(cobradata_example,
binary_truth = "status",
aspects = "overlap")
cobraplot <- prepare_data_for_plot(cobraperf, colorscheme = "Dark2",
incltruth = TRUE)
plot_upset(cobraplot)
plot_upset(cobraplot, order.by = "freq", decreasing = TRUE)
cobraperf <- calculate_performance(cobradata_example,
binary_truth = "status",
aspects = "overlap",
splv = "expr_cat")
cobraplot <- prepare_data_for_plot(cobraperf, colorscheme = "Dark2",
incltruth = TRUE)
plot_upset(cobraplot, stratum = "[2.85e+00,1.45e+01)")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.