Essential Metrics for Analyzing Network Structure

I recently completed a project studying networks and including the quantitative measures that help define influence and connection. The concept can seem abstract, like nodes, edges, clusters, and centrality scores. These terms felt like they were pulled from computer science rather than something I could apply in real-world analysis. After spending a few weeks on a use case, I gained something from the project and wanted to share the fundamental ideas that I found helpful in network analysis.


What Are Networks, Nodes, and Edges?

A network is simply a collection of objects and the connections between them. Those objects are called nodes, and the connections are called edges.

In a social network, nodes might be people, and edges represent friendships or follows. In an ecological network, nodes can be species, and edges represent the food chain relationships between them. In a business network, companies are nodes, and partnerships, transactions, or digital interactions form the edges that connect them.

Edges can be directed (showing a one-way flow of information, such as one company following another on X) or undirected (representing a mutual relationship, like a collaboration). They can also be weighted, meaning that some connections carry more strength or frequency than others, or unweighted, where all connections are treated equally.


Quantitative Metrics: How Networks Are Measured

Understanding a network involves quantifying its structure. Tools like Gephi, an open-source software for network visualization and analysis, make this process approachable. Gephi can compute network-wide metrics and node-level measures that describe how influence and information flow through the system.

Here are some of the most useful concepts to know:

Degree Centrality

This is the simplest measure — it counts how many connections a node has.

  • In-degree measures the number of edges pointing toward a node (i.e.,how many others connect to it). Below is an example of ranking Fortune 500 companies by in-degree within a network of other Fortune 500 companies.
  • Out-degree measures how many edges point away from it (how many others it connects to).
RankCompanyIn-DegreeFollowersFollowing
1Ford Motor Co.611,132,48631,371
2General Electric58455,31514,105
3Starbucks Coffee5411,569,68196,843
4Microsoft548,468,6122,564
5Facebook5013,649,140702
6Home Depot48377,03532,274
7General Motors43666,6696,312
8Intel424,803,7761,267
9Boeing42485,654243
10Cisco41651,7353,207
Top Ten Companies by In-Degree in the Fortune 500 Network

In a social network, a node with high in-degree is popular or influential, while a node with high out-degree is active or outwardly engaged.

Betweenness Centrality

This metric highlights the bridges in a network, which are the nodes that connect otherwise separate groups. A node with high betweenness lies along the shortest paths between others. These nodes play critical roles in linking communities and enabling information to spread across boundaries.

Eigenvector Centrality

While degree counts connections, eigenvector centrality weighs the quality of those connections. A node has a high eigenvector score if it’s connected to other important or well-connected nodes. This is often seen as a measure of prestige or embeddedness that influences by association rather than sheer popularity.

RankCompanyEigenvector
1Starbucks1.000
2Ford Motor Co.0.923
3Southwest Airlines0.898
4Facebook0.836
5Home Depot0.819
6Microsoft0.787
7JetBlue Airways0.759
8American Express0.687
9General Electric0.680
10PepsiCo0.660
Top Ten Companies by Eigenvector Centrality in the Fortune 500 Network

Closeness Centrality

This metric measures how close a node is to all others in the network. A node with high closeness can quickly reach or be reached by others. In practical terms, these are efficient communicators — well-positioned to access or spread information quickly.

PageRank

Originally designed by Google to rank web pages, PageRank is similar to eigenvector centrality but adds a probability-based weighting. It measures the likelihood that a random “walk” through the network would land on a given node, favoring nodes that are frequently linked to by other central nodes. In social or business contexts, it represents visibility and authority.

Twitter NamePageRankIn-DegreeEigenvector Centrality
Starbucks Coffee0.01761429541
Facebook0.0158226500.836416998
General Electric0.01545142580.679982027
Microsoft0.01348358540.787053632
AT&T0.01294237390.589781765
JetBlue Airways0.01250298330.75860999
Entertainment Tonight0.0118605490.120362424
Southwest Airlines0.01174446370.897564724
Ford Motor Company0.01167814610.922857216
Netflix US0.01122636110.320554121
Top Ten Companies by PageRank Centrality in the Fortune 500 Network

Modularity

While the measures above describe individual nodes, modularity is about the overall community structure of the network. It detects clusters of nodes that are more connected to each other than to the rest of the network. High modularity indicates distinct communities. For instance, clusters of technology companies, financial institutions, or consumer brands that interact more within their group than outside it.


Interpreting Networks: What the Numbers Mean

Quantitative metrics give structure to the complexity of relationships. For example, in a social media network of corporations, a company with a high in-degree might be a trendsetter whose posts attract widespread attention. A company with high betweenness might bridge industries by connecting technology firms with consumer brands. Meanwhile, a firm with high eigenvector or PageRank scores could represent a respected voice with strong reputational ties to other influential entities.

These measures together help analysts identify influencers, bridges, and communities, offering a deeper understanding of how ideas, influence, and collaboration circulate.


Using Gephi to Explore Networks

One of the best tools for exploring these ideas hands-on is Gephi. It’s open-source, free to use, and allows you to import data from spreadsheets or APIs. Once loaded, you can visualize nodes and edges, run algorithms like modularity or PageRank, and even color or size nodes based on their metrics. The visual aspect often reveals patterns that raw numbers can’t like clusters of interaction, isolated nodes, or cross-community bridges.

For researchers, educators, and data enthusiasts alike, Gephi provides an accessible entry point into network science. You can use it to study corporate relationships, social media patterns, trade flows, or ecological systems. The same fundamental principles apply: nodes and edges form a structure, and that structure tells a story.