Introduction and Graph Structure

We begin by motivating the study of graph representations of data, or networks. Networks form a general language for desribing complex systems of interacting entities. Pictorially, rather than thinking that our dataset consists of a set of isolated data points, we consider interactions and relationships between these points.

It’s instructive to make a philosophical distinction between different kinds of networks. One interpretation of networks is as examples of phenomena that appear in real life; we call these networks natural graphs. A couple examples include

An alternative interpretation of networks is as a data structure useful for solving a specific prediction problem. In this case, we’re more interested in relationships between entities so we can efficiently perform learning tasks. We call these networks information graphs, and some examples include

Some of the main questions we’ll be considering in this course involve how such systems are organized and what their design properties are. It’s also possible to represent datasets with rich relational structure as graphs for numerous prediction tasks: in this case, we hope to explicitly model relationships for better predictive performance. Some examples of such predictive tasks include

  1. Node classification, where we predict the type/color of a given node
  2. Link prediction, where we predict whether two nodes are linked
  3. Community detection, where we identify densely linked clusters of nodes
  4. Similarity computation, where we measure the similarity of two nodes or networks

Altogether, networks are a universal language for describing complex data, and generalize across a variety of different fields. With increased data availability and a variety of computational challenges, learning about networks leaves one poised to make a wide variety of contributions.

A Review of Graphs

Basic Concepts

A network/graphTechnically, a network often refers to real systems (the web, a social network, etc.) while a graph often refers to the mathematical representation of a network (a web graph, social graph, etc.). In these notes, we will use the terms interchangeably. is defined as a collection of objects where some pairs of objects are connected by links. We define the set of objects (nodes) as , the set of interactions (edges/links) as , and the graph over and as .

Undirected graphs have symmetrical/reciprocal links (e.g. friendship on Facebook). We define the node degree of node in an undirected graph as the number of edges adjacent to node . The average degree is then

Directed graphs have directed links (e.g. following on Twitter). We define the in-degree as the number of edges entering node . Similarly, we define the out-degree as the number of edges leaving node . The average degree is then

Complete Graphs. An undirected graph with the maximum number of edges (such that all pairs of nodes are connected) is called the complete graph. The complete graph has and average degree .

Bipartite Graphs. A bipartite graph is a graph whose nodes can be divided into two disjoint sets and such that every edge connects a node in to a node in That is, there are no edges between nodes in and between nodes in . We call and independent sets.. We can ‘‘fold’’ bipartite graphs by creating edges within independent sets or if they share at least one common neighbor.

Here, projection connects nodes in if they share at least one neighbor in . The same process is applied to obtain projection .

bipartite-folded

Other Graph Types. We briefly note that graphs can also include self-edges (self-loops), weights associated with edges, and multiple edges connecting nodes. These attributes can be encoded in graph representations with ease.

Representing Graphs

We can represent graph as adjacency matrix such that if and are linked (and otherwise). Note that is asymmetric for directed graphs. For example, a graph with a 3-clique on nodes 1, 2, and 3 and an additional edge from node 3 to 4 can be represented as

For an undirected graph,

And likewise, for a directed graph,

However, most real-world networks are sparse (, or ). As a consequence, the adjacency matrix is filled with zeros (an undesirable property).

In order to alleviate this issue, we can represent graphs as a set of edges (an edge list). This makes edge lookups harder, but preserves memory.

Graph Connectivity

We call an undirected graph connected if there is a path between any pair of nodes in the graph. A disconnected graph is made up by two or more connected components. A bridge edge is an edge such that its removal disconnects ; an articulation node is a node such that its removal disconnects . The adjacency matrix of networks with several components can be written in block-diagonal form (so that nonzero elements are confined to squares, and all other elements are 0).

We can further extend these concepts to directed graphs by definining a strongly connected directed graph as one which has a path from each node to every other node and vice versa (e.g. a path and ). A weakly connected directed graph is connected if we disregard the edge directions. We further define strongly connected components (SCCs) as strongly connected subgraphs of . Nodes that can reach the SCC are part of its in-component, and nodes that can be reached from the SCC are part of its out-component.

The graph below is connected but not strongly connected. It contains one SCC (the graph induced on nodes A, B, and C). directed-graph


Index Previous Next