View source: R/RepresentationMap.R
RepresentationMap | R Documentation |
Generate representations of the data to be used in lineage analysis.
RepresentationMap(
flat_embedding = NULL,
similarity_matrix,
join_components = TRUE,
normalize_S = TRUE,
flat_embedding_method = "umap",
...
)
flat_embedding |
optionally provided low dim embedding, if not then 2d tsne will be used |
similarity_matrix |
the graphical embedding of the cells |
join_components |
boolean, whether or not to join disconnected components of the similarity matrix |
normalize_S |
whether or not to normalize the similarity matrix |
flat_embedding_method |
what method to use for flat embedding. Use umap by default. Can be umap or tsne. |
... |
arguments to called functions |
a list containing:
dist_flat |
distance matrix on flat embedding |
dist_graph |
distance matrix on graph |
adj_matrix |
unweighted adjacency matrix |
flat_embedding |
the low dimensional embedding of the cells |
similarity_graph |
igraph object on the unweighted adjacency matrix |
components |
an igraph components object based on |
n_components |
number of components in |
sizes |
sizes of components in |
members |
list of members of |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.