| 1 | initial version |
The vertex_size parameter should work (it works fine for me in Sage 4.6.2):
G = digraphs.RandomDirectedGN(5)
G.plot(vertex_size=200, layout='circular')
According to the documentation for plot, however, edge_size is not a valid parameter. You can try looking through the documentation of NetworkX for parameters to control the edge style (arrows and such) and pass these to Sage's graph plot function via the edge_style parameter.
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.