arrange.SummarizedExperiment: Arrange by variables

View source: R/dplyr.R

arrange.SummarizedExperimentR Documentation

Arrange by variables

Description

Order either rows or cols from se by an expression involving its variables.

Usage

## S3 method for class 'SummarizedExperiment'
arrange(.data, axis, ...)

Arguments

.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

Value

A SummarizedExperiment after the filter operation

Examples

# Arrange seq_se by gene_group and then gene_name
data(seq_se)
seq_se %>% arrange(row, gene_group, gene_name)

martijnvanattekum/cleanse documentation built on Nov. 20, 2023, 8:28 p.m.