Network Analysis

Tags:
edges (2)
graphs (4)
networks (4)
nodes (2)
verticies (2)

Summary

Represent data as a set of nodes and edges between them.

Overview

Network analysis involves representing data as a graph (or network) and then analyzing that graph using standard analyses. A graph is a set of nodes (or verticies) and relationships between those nodes called edges. Edges between nodes can be directed (one way) or undirected (two way). Both nodes and edges may be weighted, e.g., to signify importance.

Here's an example of a simple graph with six nodes and  edges between some of them:

Thumb 6n graf
(Credit: Wikimedia)

A more involved example of a graph is a social network of Twitter users wherein nodes are the users and edges between nodes are established based on whether a user replies to or mentions another user in a tweet:

Thumb 6871711979 bbe5b1ae1f z
(Credit: https://www.flickr.com/photos/marc_smith/6871711979)

 Once data is represented as a graph, a number of standard analyses can be applied. Popular graph analyses include:
  • centrality measures (how important are different nodes and edges in the graph)
  • distance measures (how many "hops" does it take to get from one node to another)
  • degree (how many connections go into and out of a node)
  • reciprocity (in a directed graph, how many relationships are two way)
A general overview of network terminology and the common metrics are provided in this video series by Prof. Phil Lombardo of Endicott College.

More details of these can be found on this Wolfram Alpha page.

Materials


Resources that use this anlaysis