View source: R/local_summary.R
local.summary | R Documentation |
Obtains local (nodal) summaries from a DAG
local.summary(G, metric = "all", mode = "in")
G |
Graph of class "igraph". See |
metric |
One of |
mode |
One of |
Nodes are returned with values measuring the indegree, alpha centrality, PageRank centrality, improved closeness centrality, betweenness centrality, upstream network length, and upstream in-path length mean, variance, max (i.e., in-eccentricity), skew, kurtosis, and mean efficiency.
Ken Aho, Gabor Csardi wrote degree
, page_rank
and alpha_centrality
functions.
degree
, alpha_centrality
, page_rank
, betweenness
,
imp.closeness
,
skew
, kurt
network_a <- graph_from_literal(a --+ b, c --+ d, d --+ e, b --+ e,
e --+ j, j --+ m, f --+ g, g --+ i, h --+ i, i --+ k, k --+ l,
l --+ m, m --+ n, n --+ o)
local.summary(network_a)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.