compumap {RaceID} | R Documentation |
Computation of a two dimensional umap representation
Description
This functions performs the computation of a two-dimensional umap representation based on the distance matrix in
slot distances
using the umap package.
Usage
compumap(
object,
dimRed = FALSE,
n_neighbors = 15,
metric = "euclidean",
n_epochs = 200,
min_dist = 0.1,
local_connectivity = 1,
spread = 1
)
Arguments
object |
|
dimRed |
logical. If |
n_neighbors |
Umap parameter. See |
metric |
Umap parameter. See |
n_epochs |
Umap parameter. See |
min_dist |
Umap parameter. See |
local_connectivity |
Umap parameter. See |
spread |
Umap parameter. See |
Value
SCseq
object with umap coordinates stored in slot umap
.
Examples
sc <- SCseq(intestinalDataSmall)
sc <- filterdata(sc)
sc <- compdist(sc)
sc <- clustexp(sc)
sc <- findoutliers(sc)
sc <- compumap(sc)