-
-
Save peanutbother/fdd3797b1443153389d34a4b5280ac54 to your computer and use it in GitHub Desktop.
The confidence sort in pure Python (from Reddit's codebase)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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