diff --git a/news/index.html b/news/index.html index 5e14d10..ab5e2cd 100644 --- a/news/index.html +++ b/news/index.html @@ -95,6 +95,7 @@
random_walk_rank()
to perform random walks on the graphcentrality_harmonic()
+ deprecated centrality_closeness_harmonic()
. The latter is an interface to netrankr while the former is a more efficient and flexible igraph implementation.group_color()
as an interface to greedy_vertex_coloring()
in igraphgroup_spinglass()
: Group nodes using simulated annealing with igraph::cluster_spinglass()
group_walktrap()
: Group nodes via short random walks using igraph::cluster_walktrap()
group_biconnected_component()
: Group edges by their membership of the maximal binconnected components using igraph::biconnected_components()
group_color()
: Groups nodes by their color using igraph::greedy_vertex_coloring()
. Be aware that this is not a clustering algorithm as coloring specifically provide a color to each node so that no neighbors have the same color
Social network analysis is especially interested in detecting groups or communities within a graph, but such algorithms are also useful in other areas of network research. No single algorithm can provide the correct grouping of nodes so several exists that weigh certain features differently.
group_components()
group_edge_betweenness()
group_fast_greedy()
group_infomap()
group_label_prop()
group_leading_eigen()
group_louvain()
group_optimal()
group_spinglass()
group_walktrap()
group_biconnected_component()
group_components()
group_edge_betweenness()
group_fast_greedy()
group_infomap()
group_label_prop()
group_leading_eigen()
group_louvain()
group_optimal()
group_spinglass()
group_walktrap()
group_biconnected_component()
group_color()
Group nodes and edges based on community structure
gr <- play_gnp(10, 0.3)
with_graph(gr, centrality_degree())
-#> [1] 4 2 4 2 6 5 1 1 3 1
+#> [1] 6 5 3 3 4 2 3 4 3 5