AddMetaData | R Documentation |
Adds additional data to the object. Can be any piece of information
associated with a cell (examples include read depth, alignment rate,
experimental batch, or subpopulation identity) or feature (ENSG name,
variance). To add cell level information, add to the Seurat object. If adding
feature-level metadata, add to the Assay object (e.g. object[["RNA"]]
)
AddMetaData(object, metadata, col.name = NULL)
## S3 method for class 'Assay'
AddMetaData(object, metadata, col.name = NULL)
## S3 method for class 'Assay5'
AddMetaData(object, metadata, col.name = NULL)
## S3 method for class 'Seurat'
AddMetaData(object, metadata, col.name = NULL)
object |
An object |
metadata |
A vector, list, or data.frame with metadata to add |
col.name |
A name for meta data if not a named list or data.frame |
object
with metadata added
cluster_letters <- LETTERS[Idents(object = pbmc_small)]
names(cluster_letters) <- colnames(x = pbmc_small)
pbmc_small <- AddMetaData(
object = pbmc_small,
metadata = cluster_letters,
col.name = 'letter.idents'
)
head(x = pbmc_small[[]])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.