Summarise node centrality statistics with an igraph object
Source:R/network_summary.R
network_summary.Rd
Pass an igraph object to the function and obtain centrality statistics for each node in the object as a data frame. This function works as a wrapper of the centralization functions in 'igraph'.
Arguments
- graph
'igraph' object that can be returned from
network_g2g()
ornetwork_p2p()
when thereturn
argument is set to"network"
.- hrvar
String containing the name of the HR Variable by which to split metrics. Defaults to
NULL
.- return
String specifying what output to return. Valid inputs include:
"table"
"network"
"plot"
See
Value
for more information.
Value
By default, a data frame containing centrality statistics. Available statistics include:
betweenness: number of shortest paths going through a node.
closeness: number of steps required to access every other node from a given node.
degree: number of connections linked to a node.
eigenvector: a measure of the influence a node has on a network.
pagerank: calculates the PageRank for the specified vertices. Please refer to the igraph package documentation for the detailed technical definition.
When "network"
is passed to "return"
, an 'igraph' object is returned with
additional node attributes containing centrality scores.
When "plot"
is passed to "return"
, a summary table is returned showing
the average centrality scores by HR attribute. This is currently available if
there is a valid HR attribute.
See also
Other Network:
g2g_data
,
network_g2g()
,
network_p2p()
,
p2p_data
,
p2p_data_sim()
Examples
# Simulate a p2p network
p2p_data <- p2p_data_sim(size = 100)
g <- network_p2p(data = p2p_data, return = "network")
# Return summary table
network_summary(graph = g, return = "table")
#> # A tibble: 100 × 6
#> node_id betweenness closeness degree eigenvector pagerank
#> <chr> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 SIM_ID_1 0 0.293 9 0.715 0.00198
#> 2 SIM_ID_2 23.2 0.321 11 0.837 0.00217
#> 3 SIM_ID_3 11.1 0.314 11 0.829 0.00236
#> 4 SIM_ID_4 9.14 0.294 9 0.692 0.00258
#> 5 SIM_ID_5 87.5 0.331 11 0.805 0.00294
#> 6 SIM_ID_6 37.1 0.294 9 0.653 0.00312
#> 7 SIM_ID_7 53.6 0.305 10 0.731 0.00364
#> 8 SIM_ID_8 191. 0.354 13 0.943 0.00408
#> 9 SIM_ID_10 129. 0.333 11 0.775 0.00339
#> 10 SIM_ID_11 35.5 0.258 10 0.659 0.00484
#> # ℹ 90 more rows
# Return network with node centrality statistics
network_summary(graph = g, return = "network")
#> IGRAPH ea81183 DNW- 100 500 --
#> + attr: weight (g/n), name (v/c), Organization (v/c), node_size (v/n),
#> | betweenness (v/n), closeness (v/n), degree (v/n), eigenvector (v/n),
#> | pagerank (v/n), weight (e/n)
#> + edges from ea81183 (vertex names):
#> [1] SIM_ID_1->SIM_ID_2 SIM_ID_1->SIM_ID_3 SIM_ID_1->SIM_ID_4
#> [4] SIM_ID_1->SIM_ID_5 SIM_ID_1->SIM_ID_6 SIM_ID_1->SIM_ID_96
#> [7] SIM_ID_1->SIM_ID_97 SIM_ID_1->SIM_ID_99 SIM_ID_1->SIM_ID_100
#> [10] SIM_ID_2->SIM_ID_3 SIM_ID_2->SIM_ID_4 SIM_ID_2->SIM_ID_5
#> [13] SIM_ID_2->SIM_ID_7 SIM_ID_2->SIM_ID_28 SIM_ID_2->SIM_ID_66
#> [16] SIM_ID_2->SIM_ID_97 SIM_ID_2->SIM_ID_99 SIM_ID_2->SIM_ID_98
#> + ... omitted several edges
# Return summary plot
network_summary(graph = g, return = "plot", hrvar = "Organization")
# Simulate a g2g network and return table
g2 <- g2g_data %>% network_g2g(return = "network")
#> `primary` field not provided. Assuming `PrimaryCollaborator_Organization` as the `primary` variable.
#> `secondary` field not provided. Assuming `SecondaryCollaborator_Organization` as the `secondary` variable.
network_summary(graph = g2, return = "table")
#> # A tibble: 5 × 6
#> node_id betweenness closeness degree eigenvector pagerank
#> <chr> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 "CEO" 0 1 4 0.472 0.114
#> 2 "Finance" 0 1 9 1 0.222
#> 3 "HR" 0 1 9 1 0.222
#> 4 "Product" 0 1 9 1 0.222
#> 5 "Sales\nand Marketing" 0 1 9 1 0.222