>>>>> "Esdras" == Esdras Caleb <[EMAIL PROTECTED]> writes:

    Esdras> i see the tutorial but only do plot dont plot the points
    Esdras> it do a interpolation in the opints and give a line or
    Esdras> points folloing the line...  someone can say to me hoy
    Esdras> only draw points?  PS: sorry john i dont see...

As I said before offlist, the 2nd example in the tutorial with a
figure entitled "Using format strings" covers this.

You will notice that the plot there *does not* have a line connecting
the markers.  See also the documentation for plot.  Basically, you
want to set a line marker in the plot format string

plot(x, y, '-')   # a solid line connecting the data points
plot(x, y, 'o')   # circle markers, no solid line
plot(x, y, 's')   # square markers, no solid line
plot(x, y, '-o')  # circle markers, with connecting solid line



-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to