Get dimensional information
get_embedding(object, ...)
# S4 method for class 'matrix'
get_embedding(object, cores = 1, seed = 1, dims = 10, ...)
# S4 method for class 'Seurat'
get_embedding(object, reduction = "umap", dims = 2, ...)
The input data, a matrix with cells/samples by genes/features or a seurat object.
Arguments for other methods
Using n threads for umap
.
Set a random seed, default sets to 1.
The number of dimensions to use.
The reduction to use.
Embedding
if (FALSE) { # \dontrun{
data("example_matrix")
dimensional_information <- get_embedding(example_matrix)
} # }