Ask Your Question

jmakov's profile - activity

2022-01-23 03:08:53 +0200 received badge  Famous Question (source)
2015-12-20 19:27:09 +0200 received badge  Notable Question (source)
2013-11-29 13:36:39 +0200 received badge  Popular Question (source)
2011-04-20 18:45:17 +0200 received badge  Nice Question (source)
2011-04-20 06:05:16 +0200 received badge  Supporter (source)
2011-04-19 22:57:30 +0200 received badge  Student (source)
2011-04-19 21:47:18 +0200 asked a question Plotting digraphs

Hi.

edge_size=0.0001 and vertex_size=0.1 arguments are ignored by plot(): plot2DG = DG.plot( color_by_label=True, edge_labels=False, vertex_labels=False, edge_size=0.0001, vertex_size=0.1, layout="circular" )

plot2DG.show( figsize=(5, 2) )

gives the same picture for different edge_size and vertex_size. When passing the arguments to show() it complains with "matplotlib() got an unexpected keyword argument 'edge_size'". Works for plot3d() and show3d though. What is the right way to use edge_size and vertex_size in a 2d graph plot?