#Function to calculate the in-betweenness of edges and nodes
summary_centrality_node_betweenness <- function(adj){
igmat <- convert_adj_to_igraph(adj)
igraph::betweenness(igmat)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.