Re: [Matplotlib-users] How to plot only points which lie in a certain range

2008-10-30 Thread Pierre GM
On Monday 27 October 2008 18:40:07 marcusantonius wrote: I'm sorry for this newbie question. I have a data file consisting of 3 columns, and want to plot the first versus the second column, but only if the parameter in the third column lies in a certain range. Does somebody have an idea how to

[Matplotlib-users] How to plot only points which lie in a certain range

2008-10-27 Thread marcusantonius
I'm sorry for this newbie question. I have a data file consisting of 3 columns, and want to plot the first versus the second column, but only if the parameter in the third column lies in a certain range. Does somebody have an idea how to do that? -- View this message in context:

Re: [Matplotlib-users] How to plot only points which lie in a certain range

2008-10-27 Thread brett . mcsweeney
' of boolean values plot(x[s], y[s]) # will plot only those x,y pairs for which s is True marcusantonius [EMAIL PROTECTED] 28/10/2008 09:40 AM To matplotlib-users@lists.sourceforge.net cc Subject [Matplotlib-users] How to plot only points which lie in a certain range I'm sorry