top_markers | R Documentation |
Useful summary of the most distinguishing features in each group.
top_markers(
res,
n = 10,
auc_min = 0,
pval_max = 1,
padj_max = 1,
pct_in_min = 0,
pct_out_max = 100
)
res |
table returned by wilcoxauc() function. |
n |
number of markers to find for each. |
auc_min |
filter features with auc < auc_min. |
pval_max |
filter features with pval > pval_max. |
padj_max |
filter features with padj > padj_max. |
pct_in_min |
Minimum percent (0-100) of observations with non-zero entries in group. |
pct_out_max |
Maximum percent (0-100) of observations with non-zero entries out of group. |
table with the top n markers for each cluster.
data(exprs)
data(y)
## first, run wilcoxauc
res <- wilcoxauc(exprs, y)
## top 10 markers for each group
## filter for nominally significant (p<0.05) and over-expressed (auc>0.5)
top_markers(res, 10, auc_min = 0.5, pval_max = 0.05)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.