Howto output plot to pdf, eps or svg ?
Is it possible to output a plot to a pdf, eps or svg file? Does this work for all sorts of plots?
Is it possible to output a plot to a pdf, eps or svg file? Does this work for all sorts of plots?
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.
If the saveing function cannot work well, you can try to use a pdf converter control to transfer pdf to plot, beside to plot, pdf to html or image is also allowed..
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2010-08-23 05:36:55 +0100
Seen: 10,369 times
Last updated: Jul 12 '13