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')
Asked: 10 years ago
Seen: 2,503 times
Last updated: Apr 03 '15