Skip to content

Instantly share code, notes, and snippets.

@peanutbother
Forked from amix/sorts.py
Created May 30, 2016 14:00
Show Gist options
  • Save peanutbother/fdd3797b1443153389d34a4b5280ac54 to your computer and use it in GitHub Desktop.
Save peanutbother/fdd3797b1443153389d34a4b5280ac54 to your computer and use it in GitHub Desktop.
The confidence sort in pure Python (from Reddit's codebase)
# Rewritten code from /r2/r2/lib/db/_sorts.pyx
from math import sqrt
def confidence(ups, downs):
n = ups + downs
if n == 0:
return 0
z = 1.281551565545
p = float(ups) / n
left = p + 1/(2*n)*z*z
right = z*sqrt(p*(1-p)/n + z*z/(4*n*n))
under = 1+1/n*z*z
return (left - right) / under
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment