Use JSON file in Gephi

I have a json file containing network data that I would like to visualize using network visualization software like Gephi. But Gephi does not accept files of this type. Is there a way to convert a json file, or is there any other software for visualizing the network? I am a Mac user.

+4
source share
2 answers

You need to use networkx in Python, build your schedule and Export your schedule in a format that Gephi can load, for example, gexfor graphml. See the link for examples of supported formats. Obviously, R is an option, provided it igraphhas a json reader

+1
source

Visjs can import Gephi JSON and display it as a graph / network:

http://visjs.org/examples/network/data/importingFromGephi.html

Perhaps you could adapt JSON to fit this format.

0
source

Source: https://habr.com/ru/post/1626662/


All Articles