dimnames.Seurat {SeuratObject}R Documentation

Feature and Cell Names

Description

Get and set feature and cell inames in Seurat objects

Usage

## S3 method for class 'Seurat'
dimnames(x)

## S3 replacement method for class 'Seurat'
dimnames(x) <- value

Arguments

x

A Seurat object

value

A two-length list with updated feature and/or cells names

Value

dimnames: A two-length list with the following values:

dimnames<-: x with the feature and/or cell names updated to value

See Also

Seurat object, validity, and interaction methods $.Seurat(), Seurat-class, Seurat-validity, [[.Seurat(), [[<-,Seurat, [[<-,Seurat,NULL, dim.Seurat(), merge.Seurat(), names.Seurat(), subset.Seurat()

Cells(), dimnames.Assay(), dimnames.Assay5()

Examples

# Get the feature names of an object
head(rownames(pbmc_small))

# Get the cell names of an object
head(colnames(pbmc_small))

colnames(pbmc_small)[1] <- "newcell"
head(colnames(pbmc_small))


[Package SeuratObject version 5.0.2 Index]