faster scipy.percentileofscore ?

2009-02-02 Thread Vincent Davis
Currently I am using the following: pgrades = [scipy.percentileofscore(grades,x) for x in grades] I need the percentile of each number in grades. The problem is that it takes a long time (a few minutes) because there are 15,000 items in the list. does anyone know is there is a faster way? Thanks

Re: faster scipy.percentileofscore ?

2009-02-02 Thread Robert Kern
On 2009-02-02 12:08, Vincent Davis wrote: Currently I am using the following: pgrades = [scipy.percentileofscore(grades,x) for x in grades] I need the percentile of each number in grades. The problem is that it takes a long time (a few minutes) because there are 15,000 items in the list. does

Re: faster scipy.percentileofscore ?

2009-02-02 Thread Vincent Davis
Did not know about http://www.scipy.org/Mailing_Lists but did not look, Thanks for the help Vincent Davis On Mon, Feb 2, 2009 at 11:28 AM, Robert Kern robert.k...@gmail.com wrote: On 2009-02-02 12:08, Vincent Davis wrote: Currently I am using the following: pgrades =