arrange.SummarizedExperiment | R Documentation |
Order either rows or cols from se by an expression involving its variables.
## S3 method for class 'SummarizedExperiment'
arrange(.data, axis, ...)
.data |
SummarizedExperiment to arrange |
axis |
The axis to perform the operation on. Either row or col. |
... |
Comma separated list of unquoted variable names, or expressions involving variable names. Use desc() to sort a variable in descending order |
A SummarizedExperiment after the filter operation
# Arrange seq_se by gene_group and then gene_name
data(seq_se)
seq_se %>% arrange(row, gene_group, gene_name)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.