boot_alg_list | R Documentation |
Performs nonparametric bootstrap on a graph's by resampling its vertices and clustering the results using a list of clustering algorithms.
boot_alg_list(
alg_list = list(Louvain = cluster_louvain, `label prop` = cluster_label_prop, walktrap
= cluster_walktrap),
g,
R = 999,
return_data = FALSE,
type = "global"
)
alg_list |
List of igraph clustering algorithms |
g |
|
R |
Number of bootstrap replicates. |
return_data |
Logical. If |
type |
Can be "global" (Variation of Information, Reduced Mutual Information, and adjusted Rand Index) or "cluster-wise" (Jaccard distance) |
If return_data
is set to TRUE
, returns a list of objects of
class "boot
" (see boot
). Otherwise, returns as table
with the mean distances from the clusters in the original graph to the resampled
ones, for each of the algorithms.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.