View source: R/get_edge_betweenness.R
get_edge_betweenness | R Documentation |
This is a wrapper around igraph::cluster_edge_betweenness()
. This can
be a memory- and time-intensive operation, especially for lower taxonomic
levels. In this wrapper, edge betweenness is processed in parallel for each
subcommunity by default in an attempt to ease runtime requirements. For larger
matrices of a single community, consider using parallel::mcmapply()
around
igraph::cluster_edge_betweenness()
to increase computational efficiency
(support coming soon).
get_edge_betweenness(igraph.list)
igraph.list |
Output from |
Before running this function, consider
get_igraph_output <- bngal::get_igraph(prepro_data)
get_edge_betweenness(get_igraph_output)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.