On Tuesday, October 4, 2011 3:28:59 PM UTC-7, juaninf wrote: > > Hi everyone > > I am have 4 vectors, and I want plot 2 graphics in the same place, > > vector1 vs vector2 color = red > vector3 vs vector4 color = yelow > > I'm not quite sure what you mean by plotting one vector against another. Does this do what you want?
sage: a = (1,2,3,4,5) sage: b = (1,1,1,1,1) sage: c = (1,3,5) sage: d = (2,0,2) sage: P =list_plot(zip(a,b), color='red') sage: Q = list_plot(zip(c,d), color='yellow') sage: P+Q -- John -- 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