And then there's Jason's beautiful little time-saving method if you use a lot of graphics:
*from contextlib import contextmanager @contextmanager def r_graphics(r): r.png() yield r.dev_off() with r_graphics(r): r.boxplot() r.some_other_plot()* This and further discussion can be found at: http://trac.sagemath.org/sage_trac/ticket/11266 Joal Heagney -- To post to this group, send email to sage-support@googlegroups.com To unsubscribe from this group, send email to sage-support+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-support URL: http://www.sagemath.org