Not Logged in. Click here to Login

Data Sets

Data sets are available for download on this page, to the right. They are in various graph related formats - not supported by all graphing/visualization formats. If you are using R with the igraph library, then you can load the graphml file in using the following:
library(igraph);
x = read.graph("/path/to/hiphop_network.graphml", format="graphml");
If you don't have igraph installed, you can install it using
packages.install("igraph");
If you want to generate a visualization, like on the home page, you can run the following command in R
plot.igraph(x,vertex.size=2,vertex.color="red",vertex.label=NA,
  edge.width=E(x),edge.arrow.size=0,margin=0,layout=layout.fruchterman.reingold)

Download files

FormatDownload
GraphML/data/hiphop_network.graphml