Author Topic: score in stats page ???  (Read 2058 times)

rambo99

  • Newbie
  • *
  • Posts: 7
    • View Profile
score in stats page ???
« on: June 19, 2006, 03:19:21 PM »
how is this calculated?

Corey Cooper

  • Administrator
  • Hero Member
  • *****
  • Posts: 6220
    • View Profile
Re: score in stats page ???
« Reply #1 on: June 19, 2006, 09:51:42 PM »
I thought for sure I had outlined this in the user manual, but I guess not...

Logarithm method:
Code: [Select]
N = log((numberOfPlayers + 1) / rank)
This is then averaged over the set of tournaments.  Finally, the N is plugged into this formula to obtain the final score:
Code: [Select]
score = (1 - exp(-N)) * 100
* Note that the log() function is log base e.

Percentile method:
Code: [Select]
score = (1 - (rank / (numberOfPlayers + 1))) * 100
This is then averaged over the set of tournaments to obtain the final score.