| cmp_make_clusters {simplifyEnrichment} | R Documentation |
Apply various clustering methods
cmp_make_clusters(mat, method = setdiff(all_clustering_methods(), "mclust"),
verbose = TRUE)
mat |
The similarity matrix. |
method |
Which methods to compare. All available methods are in |
verbose |
Whether to print messages. |
The function compares following default clustering methods by default:
kmeanssee cluster_by_kmeans.
dynamicTreeCutmclustsee cluster_by_mclust. By default it is not included.
apclustersee cluster_by_apcluster.
hdbscansee cluster_by_hdbscan.
fast_greedysee cluster_by_igraph.
leading_eigensee cluster_by_igraph.
louvainsee cluster_by_igraph.
walktrapsee cluster_by_igraph.
MCLsee cluster_by_MCL.
binary_cutsee binary_cut.
Also the user-defined methods in all_clustering_methods are also compared.
A list of cluster label vectors for different clustering methods.
## Not run:
mat = readRDS(system.file("extdata", "random_GO_BP_sim_mat.rds",
package = "simplifyEnrichment"))
clt = cmp_make_clusters(mat)
## End(Not run)