Percentile scoring for teams. #21
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Given some kind of scoring calculation, calculate a percentile for each team as part of their ranking statistics.
This percentile could be applied to:
This percentile ranking could be extended to providing Box and Whisker Plots to demonstrate the data.
Formulae for reference:
v = value
p = percentile
R = percentile rank
n = population size
E = # of instances of value in population
L = # of instances < value in population
Q_1 = First Quartile
Q_2 = Second Quartile
Q_3 = Third Quartile
IQR = Interquartile Range
SIQR = Semi-Interquartile Range
p = 100[ (L + 0.5E) / n ]
R = (p / 100)(n + 1)
Q_1 = median of lower half of n
Q_2 = median of n
Q_3 = median of upper half of n
IQR = Q_3 - Q_1
SIQR = IQR / 2
Outliers Under:
any data < Q_1 - 1.5IQR
Outliers Over:
any data > Q_3 + 1.5IQR