Re: [Matplotlib-users] Removing a data series

2006-11-09 Thread Fernando Perez
On 11/9/06, Angus McMorland <[EMAIL PROTECTED]> wrote: > Since this is the third time I've seen this question pop up in a few > months, I've put an entry in the wiki for it here > (http://www.scipy.org/Cookbook/Matplotlib/DeletingAnExistingDataSeries). > Fernando, I hope you don't mind me using y

Re: [Matplotlib-users] Removing a data series

2006-11-09 Thread Angus McMorland
On 10/11/06, Dan Karipides <[EMAIL PROTECTED]> wrote: > Fernando, > > Thanks, this is exactly what I need. > > BTW, I think I missed it in the search because the archive here: > > http://sourceforge.net/mailarchive/forum.php?forum_id=33405 > > doesn't show anything more recent that 10/02/2006. I'm

Re: [Matplotlib-users] Removing a data series

2006-11-09 Thread Dan Karipides
PROTECTED] -Original Message- From: Fernando Perez [mailto:[EMAIL PROTECTED] Sent: Thursday, November 09, 2006 9:46 AM To: Dan Karipides Cc: matplotlib-users@lists.sourceforge.net Subject: Re: [Matplotlib-users] Removing a data series Hi Dan, On 11/9/06, Dan Karipides <[EMAIL PROT

Re: [Matplotlib-users] Removing a data series

2006-11-09 Thread Pierre GM
> My basic question: Is it possible to remove a data series from a matplotlib > plot? A quite similar question was asked yesterday: The lines are stored in "ax.lines", by chronological order. If you want to delete the second one, just use del(ax.lines[1]), and redraw if needed.

Re: [Matplotlib-users] Removing a data series

2006-11-09 Thread Fernando Perez
Hi Dan, On 11/9/06, Dan Karipides <[EMAIL PROTECTED]> wrote: > I did my best to search the examples, mailing list, etc. but was surprised > that I didn't even find this question asked, let alone answered. Coincidentally it was asked just yesterday by Andrea Gavana, but you may have missed it in

[Matplotlib-users] Removing a data series

2006-11-09 Thread Dan Karipides
I did my best to search the examples, mailing list, etc. but was surprised that I didn’t even find this question asked, let alone answered.   My basic question: Is it possible to remove a data series from a matplotlib plot?   Longer question:   I'm using matplotlib to generate graph i