Hi,

I've just start playing with maskedarray (the new implementation) using fresh svn matplotib (0_91 maintenance).
Plotting masked array does not behave as I would have expected.
Indeed when drawing a "line graph" the masked walues interrupted the line (see attach example). I would prefer to see a continues line...
Is it the expected behavior? Is there a way to change it?

Thanks in advance,

David
import pylab
import maskedarray as ma

x = ma.arange(10)
y = ma.sin(x/10.0)

y[2]=ma.masked

pylab.plot(x,y,'-o')
pylab.show()

<<inline: interupt.png>>

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to