How do you save a graph in eps?
I get a file filename.eps.sobj. How do I transform it into eps?
I get a file filename.eps.sobj. How do I transform it into eps?
It seems you saved your graph as a Sage object (hence the .sobj extension).
To get it back as a graph, you can do:
sage: G = load('filename.eps.sobj')
Then you can make a plot object from your graph:
sage: P = G.plot()
Then you can save this plot object as an .eps file, and the method will know that you want to save the plot as an eps file:
sage: P.save('mygraph.eps')
Of course, if you have a graph G in your Sage session, you can directly do:
sage: G.plot().save('mygraph.eps')
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2015-04-03 12:04:52 +0100
Seen: 2,606 times
Last updated: Apr 03 '15
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.