forked from satijalab/seurat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGetCellEmbeddings.Rd
31 lines (27 loc) · 909 Bytes
/
GetCellEmbeddings.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/dimensional_reduction_utilities.R
\name{GetCellEmbeddings}
\alias{GetCellEmbeddings}
\title{Dimensional Reduction Cell Embeddings Accessor Function}
\usage{
GetCellEmbeddings(object, reduction.type = "pca", dims.use = NULL,
cells.use = NULL)
}
\arguments{
\item{object}{Seurat object}
\item{reduction.type}{Type of dimensional reduction to fetch (default is PCA)}
\item{dims.use}{Dimensions to include (default is all stored dims)}
\item{cells.use}{Cells to include (default is all cells)}
}
\value{
Cell embedding matrix for given reduction, cells, and dimensions
}
\description{
Pull cell embeddings matrix for specified stored dimensional reduction
analysis
}
\examples{
pbmc_small
# Examine the head of the first 5 PC cell embeddings
head(GetCellEmbeddings(object = pbmc_small, reduction.type = "pca", dims.use = 1:5))
}