0

I want to plot a network graph in python from CSV file, where there will be 3 types of networks connected . Want to customize and access based on attributes. Can anyone help me?Data looks like this , 3 graphs required in a plot.

enter image description here

  • Welcome to StackOverflow. Pls. refer to the [help](https://stackoverflow.com/help) section on how to ask questions here and [how to create a Minimal, Reproducible Example](https://stackoverflow.com/help/minimal-reproducible-example). – code-kobold Feb 02 '21 at 19:19

1 Answers1

1

You can look at how to draw directed graphs using networkx in python? for the rendering, just use https://docs.python.org/3/library/csv.html to read your data.

user2650994
  • 136
  • 5