Python Forum
How to create a graph for direction visualization - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: How to create a graph for direction visualization (/thread-12989.html)



How to create a graph for direction visualization - Visiting - Sep-22-2018

Found a sample code for visualization of direction here:
https://habr.com/post/129344/

but the dataset is not available, and language is not English. Do you know any source Visualization of Directionto create similar graph? Thank you.


RE: How to create a graph for direction visualization - j.crater - Sep-22-2018

I think what you have here is a network graph. Or perhaps directed network graph, which you maybe meant to explain.
Try if NetworkX module can be of help. Or just search online for Python (directed) network graph.


RE: How to create a graph for direction visualization - Visiting - Sep-22-2018

Thank you!