Potential tweaks to the formula. As a public service announcement here is my plan for the formula this year (kind of bored with the old formula)
Old Formula:
Here is the formula I think I will move to this season (but I may tweak it):
Feel free to comment about the formula. I may take your advice (although probably not since I am definitely a curmudgeon when it comes to the prediction contest).
Old Formula:
Code:
Points = 20*winner +
40*winner*(1-MOVD/24) if abs(MOVD) <= 24, 0 otherwise +
40*(1-d(predicted,actual)/28) if d( , ) <= 28, 0 otherwise
Winner = 1 if the winning team is correctly picked, 0 otherwise
MOVD = margin of victory diferrential: Predicted (MOV) - Actual(MOV)
d( , ) = Euclidean distance
Code:
Points = 30*winner + 35*f(MOVD) + 35*g(d(predicted,actual))
Winner = 1 if the winning team is correctly picked, 0 otherwise
MOVD = margin of victory diferrential: Predicted (MOV) - Actual(MOV)
d( , ) = Euclidean distance
f(x) = 1 - 0.60(x/15) if x <= 5,
= 1 - 0.80(x/15) if 5 < x <= 10
= 1 - 1.00(x/15) if 10 < x <= 15
= 0 if 15 < x
g(x) = 1 - 0.60(x/20) if x <= 5,
= 1 - 0.80(x/20) if 5 < x <= 10
= 1 - 1.00(x/20) if 10 < x <= 20
= 0 if 20 < x
Comment