group_graph {tidygraph} | R Documentation |
Group nodes and edges based on community structure
Description
These functions are wrappers around the various clustering functions provided
by igraph
. As with the other wrappers they automatically use the graph that
is being computed on, and otherwise passes on its arguments to the relevant
clustering function. The return value is always a numeric vector of group
memberships so that nodes or edges with the same number are part of the same
group. Grouping is predominantly made on nodes and currently the only
grouping of edges supported is biconnected components.
Usage
group_components(type = "weak")
group_edge_betweenness(weights = NULL, directed = TRUE, n_groups = NULL)
group_fast_greedy(weights = NULL, n_groups = NULL)
group_infomap(weights = NULL, node_weights = NULL, trials = 10)
group_label_prop(weights = NULL, label = NULL, fixed = NULL)
group_leading_eigen(
weights = NULL,
steps = -1,
label = NULL,
options = arpack_defaults(),
n_groups = NULL
)
group_louvain(weights = NULL, resolution = 1)
group_leiden(
weights = NULL,
resolution = 1,
objective_function = "CPM",
beta = 0.01,
label = NULL,
n = 2,
node_weights = NULL
)
group_optimal(weights = NULL)
group_spinglass(weights = NULL, ...)
group_walktrap(weights = NULL, steps = 4, n_groups = NULL)
group_fluid(n_groups = 2)
group_biconnected_component()
group_color()
Arguments
type |
The type of component to find. Either |
weights |
The weight of the edges to use for the calculation. Will be evaluated in the context of the edge data. |
directed |
Should direction of edges be used for the calculations |
n_groups |
Integer scalar, the desired number of communities. If too low or two high, then an error message is given. The measure is applied to the full graph so the number of groups returned may be lower for focused graphs |
node_weights |
The weight of the nodes to use for the calculation. Will be evaluated in the context of the node data. |
trials |
Number of times partition of the network should be attempted |
label |
The initial groups of the nodes. Will be evaluated in the context of the node data. |
fixed |
A logical vector determining which nodes should keep their initial groups. Will be evaluated in the context of the node data. |
steps |
The number of steps in the random walks |
options |
Settings passed on to |
resolution |
Resolution of the modularity function used internally in the algorithm |
objective_function |
Either |
beta |
Parameter affecting the randomness in the Leiden algorithm. This affects only the refinement step of the algorithm. |
n |
The number of iterations to run the clustering |
... |
arguments passed on to |
Value
a numeric vector with the membership for each node in the graph. The enumeration happens in order based on group size progressing from the largest to the smallest group
Functions
-
group_components()
: Group by connected compenents usingigraph::components()
-
group_edge_betweenness()
: Group densely connected nodes usingigraph::cluster_edge_betweenness()
-
group_fast_greedy()
: Group nodes by optimising modularity usingigraph::cluster_fast_greedy()
-
group_infomap()
: Group nodes by minimizing description length usingigraph::cluster_infomap()
-
group_label_prop()
: Group nodes by propagating labels usingigraph::cluster_label_prop()
-
group_leading_eigen()
: Group nodes based on the leading eigenvector of the modularity matrix usingigraph::cluster_leading_eigen()
-
group_louvain()
: Group nodes by multilevel optimisation of modularity usingigraph::cluster_louvain()
-
group_leiden()
: Group nodes according to the Leiden algorithm (igraph::cluster_leiden()
) which is similar, but more efficient and provides higher quality results thancluster_louvain()
-
group_optimal()
: Group nodes by optimising the moldularity score usingigraph::cluster_optimal()
-
group_spinglass()
: Group nodes using simulated annealing withigraph::cluster_spinglass()
-
group_walktrap()
: Group nodes via short random walks usingigraph::cluster_walktrap()
-
group_fluid()
: Group nodes by simulating fluid interactions on the graph topology usingigraph::cluster_fluid_communities()
-
group_biconnected_component()
: Group edges by their membership of the maximal binconnected components usingigraph::biconnected_components()
-
group_color()
: Groups nodes by their color usingigraph::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
Examples
create_notable('tutte') %>%
activate(nodes) %>%
mutate(group = group_infomap())