Description Usage Arguments Value Examples
A function to perform igraph clustering
1 2 3 4 5 6 7 | igraphClustering(
sce,
metadata = "SNF_W",
method = c("louvain", "walktrap", "spinglass", "optimal", "leading_eigen",
"label_prop", "fast_greedy", "edge_betweenness"),
...
)
|
sce |
A singlecellexperiment object |
metadata |
indicates the meta data name of affinity matrix to virsualise |
method |
A character indicates the method for finding communities from igraph. Default is louvain clustering. |
... |
Other inputs for the igraph functions |
A vector indicates the membership (clustering) results
1 2 3 4 | data(sce_control_subset, package = "CiteFuse")
sce_control_subset <- CiteFuse(sce_control_subset)
SNF_W_louvain <- igraphClustering(sce_control_subset,
method = "louvain")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.