#Calculate PageRank as centrality measure
summary_centrality_node_pagerank <- function(adj){
igmat <- convert_adj_to_igraph(adj)
igraph::page_rank(igmat)$vector
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.