Creating adjacency matrices and edge lists

We can represent social network data in different formats. We cover two common representations:

  • Sparse adjacency matrices
  • Edge lists

Taking data from the Meetup.com social networking site (from the previous recipe in this chapter--Downloading social network data using public APIs), this recipe shows how you can convert a data frame with membership information to a sparse adjacency matrix and then to an edge list.

In this application, nodes represent users of Meetup.com and an edge connects two nodes if they are members of at least one common group. The number of common groups for a pair of people will represent the weight of the connection.

Get R Data Analysis Cookbook - Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.