Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'd like to create a function that takes a (sorted) list as its argument and outputs a list containing each element's corresponding percentile.

For example, fn([1,2,3,4,17]) returns [0.0, 0.25, 0.50, 0.75, 1.00].

Can anyone please either:

  1. Help me correct my code below? OR
  2. Offer a better alternative than my code for mapping values in a list to their corresponding percentiles?

My current code:

def median(mylist):
    length = len(mylist)
    if not length % 2:
        return (mylist[length / 2] + mylist[length / 2 - 1]) / 2.0
    return mylist[length / 2]

###############################################################################
# PERCENTILE FUNCTION
###############################################################################

def percentile(x):
    """
    Find the correspoding percentile of each value relative to a list of values.
    where x is the list of values
    Input list should already be sorted!
    """

    # sort the input list
    # list_sorted = x.sort()

    # count the number of elements in the list
    list_elementCount = len(x)

    #obtain set of values from list

    listFromSetFromList = list(set(x))

    # count the number of unique elements in the list
    list_uniqueElementCount = len(set(x))

    # define extreme quantiles
    percentileZero    = min(x)
    percentileHundred = max(x)

    # define median quantile
    mdn = median(x) 

    # create empty list to hold percentiles
    x_percentile = [0.00] * list_elementCount 

    # initialize unique count
    uCount = 0

    for i in range(list_elementCount):
        if x[i] == percentileZero:
            x_percentile[i] = 0.00
        elif x[i] == percentileHundred:
            x_percentile[i] = 1.00
        elif x[i] == mdn:
            x_percentile[i] = 0.50 
        else:
            subList_elementCount = 0
            for j in range(i):
                if x[j] < x[i]:
                    subList_elementCount = subList_elementCount + 1 
            x_percentile[i] = float(subList_elementCount / list_elementCount)
            #x_percentile[i] = float(len(x[x > listFromSetFromList[uCount]]) / list_elementCount)
            if i == 0:
                continue
            else:
                if x[i] == x[i-1]:
                    continue
                else:
                    uCount = uCount + 1
    return x_percentile

Currently, if I submit percentile([1,2,3,4,17]), the list [0.0, 0.0, 0.5, 0.0, 1.0] is returned.

share|improve this question
Is this homework? – Hans Then Sep 13 '12 at 20:20
I don't see any numpy or scipy use in your code, why use those tags? – Martijn Pieters Sep 13 '12 at 20:21
When you say each elements corresponding percentile, do you mean quintile? – Gerrat Sep 13 '12 at 20:24
@HansThen: No, this is not homework. – Jubbles Sep 13 '12 at 20:26
@Martijin Pieters: I included Numpy and SciPy as tags because I anticipate that someone may direct me to these libraries. – Jubbles Sep 13 '12 at 20:27
show 2 more comments

3 Answers

up vote 6 down vote accepted

I think you want scipy.stats.percentileofscore

Example:

percentileofscore([1, 2, 3, 4], 3)
75.0
percentiles = [percentileofscore(data, i) for i in data]
share|improve this answer
1  
Specifically, [percentileofscore(score) for score in original_list]. – Karl Knechtel Sep 13 '12 at 20:55
yup, edited to add that. – reptilicus Sep 13 '12 at 20:58
@user1443118 and @Karl Knechtel: That does it. Specific to my preferences, [percentileofscore(data, i, 'weak') for i in data] is what I'm looking for. Very Pythonic too. – Jubbles Sep 13 '12 at 21:08

If I understand you correctly, all you want to do, is to define the percentile this element represents in the array, how much of the array is before that element. as in [1, 2, 3, 4, 5] should be [0.0, 0.25, 0.5, 0.75, 1.0]

I believe such code will be enough:

def percentileListEdited(List):
    uniqueList = list(set(List))
    increase = 1.0/(len(uniqueList)-1)
    newList = {}
    for index, value in enumerate(uniqueList):
        newList[index] = 0.0 + increase * index
    return [newList[val] for val in List]
share|improve this answer
Close, but not quite. If I try percentileList([1,2,3,4,4,5,5]) the list [0.0, 0.17, 0.33, 0.5, 0.67, 0.83, 0.99] is returned, where I'd like [0.0, 0.17, 0.33, 0.50, 0.50, 1.00, 1.00] returned. – Jubbles Sep 13 '12 at 20:35
Well, I want to know more, about what you want to do, the repeating numbers should have the same percentile, but still their percentile are affected by the number of repeated numbers ?! – Mahmoud Aladdin Sep 13 '12 at 20:51
Yes, while multiple observations of distinct values should all have the same percentile, each observation still adds to the count of observations that are strictly less than observations with greater values. Percentiles are no quite as straight-forward as some people initially think. – Jubbles Sep 13 '12 at 20:59
@Jubbles, indeed they are not. I'll admit to being a bit confused by the example you give above. Having the lowest value be 0.0 and the highest value be 100.0 seems inconsistent. – senderle Sep 13 '12 at 22:09
Thanks @Aladdin, I like this solution for my problem. Note that it would be nice to generalize it for empty lists and lists with one element (which results in a ZeroDivisionError exception). – Rob Bednark Sep 20 '12 at 19:54

this might look oversimplyfied but what about this:

def percentile(x):
    pc = float(1)/(len(x)-1)
    return ["%.2f"%(n*pc) for n, i in enumerate(x)]

EDIT:

def percentile(x):
    unique = set(x)
    mapping = {}
    pc = float(1)/(len(unique)-1)
    for n, i in enumerate(unique):
        mapping[i] = "%.2f"%(n*pc)
    return [mapping.get(el) for el in x]
share|improve this answer
Close, but this has the same problem as Aladdin's first attempt above. – Jubbles Sep 13 '12 at 20:48
check my edit. this might work for u – aschmid00 Sep 13 '12 at 20:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.