Skip to content

Instantly share code, notes, and snippets.

/KP

Created November 6, 2013 12:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/7335422 to your computer and use it in GitHub Desktop.
Save anonymous/7335422 to your computer and use it in GitHub Desktop.
votes = {1: 3599, 2: 1323, 3: 957, 4: 786, 5: 1300, 6: 1987, 7:3148, 8:3136, 9: 2514, 10: 4602}
V = sum(votes.values())
M = 500
R = 0
for i in votes.keys():
R += votes[i]*i
R /= V
C = 7.3504
print(V/(V+M)*R+M/(V+M)*C)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment