dimnames.Seurat | R Documentation |
Get and set feature and cell inames in Seurat
objects
## S3 method for class 'Seurat'
dimnames(x)
## S3 replacement method for class 'Seurat'
dimnames(x) <- value
x |
A |
value |
A two-length list with updated feature and/or cells names |
dimnames
: A two-length list with the following values:
A character vector with all features in the default assay
A character vector with all cells in x
dimnames<-
: x
with the feature and/or cell
names updated to value
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()
# 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))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.