I am learning how to plot in sage and tried the following example:

x=srange(0, 4, 0.2)
y=srange(0, 4, 0.2)
xy = zip(x,y)

list_plot(xy,pointsize=40,faceted='True',rgbcolor='white')


This works perfect, but if I add the option plotjoined='True' I got a 
mistake and then I have to plot this option as unique parameter:


list_plot(xy,plotjoined='True')

Is there any way to plot the points joined with the line with an unique 
plot_list function?

I guess I could use matplotlib, but I have to get use to the easy way to 
plot just before start with

PS: list_plot()

--~--~---------~--~----~------------~-------~--~----~
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
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---

Reply via email to