Hello thanks everybody for you fast replies, but unfortunately there's a
problem with all the solutions you propose: they plot a line between each of
the data sets. It is not the same to do:
plot([1,2],[1,1])
plot([7,8],[1,1])
than to do
plot([1,2,7,8],[1,1,1,1])
The first example plots two disjoint segments, while the second plots three
joint segments.
I did code a workaround to plot the data as I wanted but it's something like
20 lines of ugly code and I really think there must be an easier way.
By the way, Angel, my name is Armando not Alejandro. ;)
On 7/18/07, Armando Serrano Lombillo <[EMAIL PROTECTED]> wrote:
Hello, I have a question.
Let's say I have the following data:
[1,3,6,1,2,0,0,0,0,1,4,7,9,4,2,4,6,0,0,0,0,0,0,0,0,0,0,0,0,1,3,5,6,7,8]
which I want to plot, but I want to omit the zeros, so I would like to do
something like:
plot(range(1,6), [1,3,6,1,2], 'b')
plot(range(10,18), [1,4,7,9,4,2,4,6], 'b')
plot(range(30,36), [1,3,5,6,7,8], 'b')
savefig('filtered.eps')
Is there an elegant way of doing this?
Armando.
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users