Re: [Matplotlib-users] Efficient scatter() w/ markers from plot()?

2008-03-20 Thread Manuel Metz
Ted Drain wrote: I need to efficiently plot a set of x,y points where each point has a different color. I tried multiple calls to plot() with a single point each but that is way too slow. I switched to using scatter() and passing in a list of colors which works great. However, I'd really

Re: [Matplotlib-users] Efficient scatter() w/ markers from plot()?

2008-03-20 Thread Ted Drain
-Original Message- From: Manuel Metz [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2008 1:13 AM To: Ted Drain Cc: matplotlib-users@lists.sourceforge.net Subject: Re: [Matplotlib-users] Efficient scatter() w/ markers from plot()? Ted Drain wrote: I need to efficiently plot a set of x

[Matplotlib-users] Efficient scatter() w/ markers from plot()?

2008-03-19 Thread Ted Drain
I need to efficiently plot a set of x,y points where each point has a different color. I tried multiple calls to plot() with a single point each but that is way too slow. I switched to using scatter() and passing in a list of colors which works great. However, I'd really like to have the marker