| centrality_leaderrank | R Documentation |
PageRank variant with a ground node connected to all nodes. Requires a directed graph.
centrality_leaderrank(x, ...)
x |
Network input (matrix, igraph, network, cograph_network, tna object). Must be directed. |
... |
Additional arguments passed to |
Named numeric vector of LeaderRank values.
centrality for computing multiple measures at once,
centrality_pagerank for standard PageRank.
adj <- matrix(c(0, 1, 0, 0, 0, 1, 1, 1, 0), 3, 3)
rownames(adj) <- colnames(adj) <- c("A", "B", "C")
centrality_leaderrank(adj)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.