Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Use JSON file in Gephi

I have a json file containing network data that I'd like to visualize using a network visualization software like Gephi. But Gephi does not accept this type of files. Is there a way to convert the json file or are there any other network visualization softwares out there that can? I am a Mac user.

like image 608
Gigi Avatar asked Jan 30 '16 15:01

Gigi


1 Answers

You need to use networkx in Python, construct your graph and Export your graph in a format that Gephi can load such as gexfor graphml. See the link for examples of the supported formats. Apparently R is an option, too, provided that igraph has a json reader

like image 64
Yannis P. Avatar answered Sep 19 '22 10:09

Yannis P.