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 wrote:
> On 2009-02-02 12:08, Vincent Davis wrote:
>>
>> Currently I am using the following:
>> pgrades = [scipy.percentileofscore(grades,x) f
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 an
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