A data frame with one row containing network-level statistics:
Basic measures (always computed):
- node_count
Number of nodes in the network
edge_count
Number of edges in the network
density
Edge density (proportion of possible edges)
component_count
Number of connected components
diameter
Longest shortest path in the network
mean_distance
Average shortest path length
min_cut
Minimum cut value (edge connectivity)
centralization_degree
Degree centralization (0-1)
centralization_in_degree
In-degree centralization (directed only)
centralization_out_degree
Out-degree centralization (directed only)
centralization_betweenness
Betweenness centralization (0-1)
centralization_closeness
Closeness centralization (0-1)
centralization_eigen
Eigenvector centralization (0-1)
transitivity
Global clustering coefficient
reciprocity
Proportion of mutual edges (directed only)
assortativity_degree
Degree assortativity coefficient
hub_score
Maximum hub score (HITS algorithm)
authority_score
Maximum authority score (HITS algorithm)
Extended measures (when extended = TRUE):
- girth
Length of shortest cycle (Inf if acyclic)
radius
Minimum eccentricity (shortest max-distance from any node)
vertex_connectivity
Minimum nodes to remove to disconnect graph
largest_clique_size
Size of the largest complete subgraph
cut_vertex_count
Number of articulation points (cut vertices)
bridge_count
Number of bridge edges
global_efficiency
Average inverse shortest path length
local_efficiency
Average local efficiency across nodes
Detailed measures (when detailed = TRUE):
- mean_degree, sd_degree, median_degree
Degree distribution statistics
mean_strength, sd_strength
Weighted degree statistics
mean_betweenness
Average betweenness centrality
mean_closeness
Average closeness centrality
mean_eigenvector
Average eigenvector centrality
mean_pagerank
Average PageRank
mean_constraint
Average Burt's constraint
mean_local_transitivity
Average local clustering coefficient