First time here? Check out the FAQ!
answered 12 years ago
You will need to use the plot method to be able to save, as the show method returns None. Say G is a Graph. Then the following saves a picture of G to filename.png.
plot
show
None
G
Graph
filename.png
sage: p = G.plot() sage: p.save('filename.png')