First time here? Check out the FAQ!
answered 14 years ago
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