Skip to content

Instantly share code, notes, and snippets.

@ageron
Created March 21, 2013 11:38
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save ageron/5212412 to your computer and use it in GitHub Desktop.
Save ageron/5212412 to your computer and use it in GitHub Desktop.
Explanation of 90th percentile
def nth_percentile(dataset, percentile = 90):
sorted_dataset = sorted(dataset)
new_length = len(sorted_dataset) * percentile / 100
return sorted_dataset[0:new_length]
def mean(dataset):
return sum(dataset)/float(len(dataset))
dataset = [5, 9, 7, 101, 4, 8, 109, 104, 6, 1, 110, 106, 3, 107, 105, 2, 102, 10, 103, 108]
percentile_90 = nth_percentile(dataset)
lower_90 = min(percentile_90)
mean_90 = mean(percentile_90)
upper_90 = max(percentile_90)
sum_90 = sum(percentile_90)
print "90th percentile sorted dataset =", percentile_90
print "lower_90 =", lower_90
print " mean_90 =", mean_90
print "upper_90 =", upper_90
print " sum_90 =", sum_90
##### This program will output:
#
# 90th percentile sorted dataset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 101, 102, 103, 104, 105, 106, 107, 108]
# lower_90 = 1
# mean_90 = 49.5
# upper_90 = 108
# sum_90 = 891
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment