First time here? Check out the FAQ!
answered 2010-08-23 06:19:02 +0100
Yes, you can save plots to those formats. Here's an example
sage: p = plot(x^2, x) sage: p.save('test.pdf') sage: p.save('test.eps') sage: p.save('test.svg')
It works for any of Sage's Graphics objects.
Graphics