This is a graph. But now I want the vertices labeled with {'A','B','C'}
or some names and in colors. And I have not seen an option for the thikness of the edge and the arrow
Working with this exemple addapted from the documentation
D = DiGraph({0:[0,1], 1:[2], 2:[3]}, loops=True)
D.show(edge_colors={(0,1,1):[(0,1),(2,3)]})
I have been suprised not to be allowed to put edge_colors inside show()
in my case, but this is of less importance since there is an other way.
Of more importance, in graph option I have not seen any command for the thikness of the edges and arrow head.
One more time thanks for your help