0%

Graph Data Sets

Stanford Large Network Dataset Collection
Laboratory for Web Algorithmics

Install WebGraph

1
2
3
wget https://search.maven.org/remotecontent?filepath=it/unimi/dsi/webgraph/3.6.5/webgraph-3.6.5.jar
wget http://webgraph.di.unimi.it/webgraph-deps.tar.gz
tar -xzvf webgraph-deps.tar.gz

move them to /web_graph/lib/
test

1
java -cp "lib/*" it.unimi.dsi.webgraph.ArcListASCIIGraph --help

Download Dataset

1
2
wget http://data.law.di.unimi.it/webdata/cnr-2000/cnr-2000.graph
wget http://data.law.di.unimi.it/webdata/cnr-2000/cnr-2000.properties

Transform to Adjacent List

1
java -cp "lib/*" it.unimi.dsi.webgraph.ASCIIGraph cnr-2000 cnr-2000

Transform to Edge List

1
java -cp "lib/*" it.unimi.dsi.webgraph.ArcListASCIIGraph cnr-2000 cnr-2000-edgelist.txt

-------------The EndThanks for reading.-------------