Reset to default clustering methods

reset_clustering_methods()

Details

The default methods are:

kmeans

see cluster_by_kmeans.

pam

see cluster_by_pam.

dynamicTreeCut

see cluster_by_dynamicTreeCut.

mclust

see cluster_by_mclust.

apcluster

see cluster_by_apcluster.

hdbscan

see cluster_by_hdbscan.

fast_greedy

see cluster_by_igraph.

louvain

see cluster_by_igraph.

walktrap

see cluster_by_igraph.

MCL

see cluster_by_MCL.

binary_cut

see binary_cut.

Value

No value is returned.

Examples

all_clustering_methods()
#>  [1] "binary_cut"     "kmeans"         "pam"            "dynamicTreeCut"
#>  [5] "mclust"         "apcluster"      "hdbscan"        "fast_greedy"   
#>  [9] "louvain"        "walktrap"       "MCL"           
remove_clustering_methods(c("kmeans", "mclust"))
all_clustering_methods()
#> [1] "binary_cut"     "pam"            "dynamicTreeCut" "apcluster"     
#> [5] "hdbscan"        "fast_greedy"    "louvain"        "walktrap"      
#> [9] "MCL"           
reset_clustering_methods()
all_clustering_methods()
#>  [1] "kmeans"         "pam"            "dynamicTreeCut" "mclust"        
#>  [5] "apcluster"      "hdbscan"        "fast_greedy"    "louvain"       
#>  [9] "walktrap"       "MCL"            "binary_cut"