Sometimes I plot a function that takes a long time to compute: P = plot(f, 0, 10) # (wait a long time)
and then I decide that, oops, I wanted that plot to be red, or I wanted the lines to be dashed, or... So then I make a new plot by typing P = plot(f, 0, 10, rgbcolor=(1, 0, 0)) # (wait a long time again) Is there a way to change the color, or change the line type, etc. without recalculating the plot (and waiting a long time again)? -- 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