Visualization for network data structure.
Here is an example.
Assume we have a network with nodes and edges.
We need transform it to a map(python dict), like that:
relationMap = {
"Y-K": 97,
"T-J": 99,
...
}Reference: src/main.py getRelationDict()
Run script in src/main.py prepareGraph() to build a json file to render html.
Please use script in src/run_server.py to start a server. And finally we can show it in a Browser.
