knitr::opts_chunk$set( collapse = TRUE, warning = FALSE, comment = "#>" )
library(clustAnalytics)
The package includes efficient implementations of the clustering coefficient and transitivity for weighted networks introduced by \cite{clustcoeficient}. As they can be applied to weighted graphs in general and not only to their partition into communities, they are simply called with the graph as the only argument:
data(karate, package="igraphdata") weighted_clustering_coefficient(karate)
To be able to obtain the result for every community in the graph, we provide the function apply_subgraphs; which given a graph, a membership vector and a scalar function, applies the function to every community and returns the vector of results. In this case it works as follows:
apply_subgraphs(karate, V(karate)$Faction, weighted_clustering_coefficient)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.