The power ranking scores for Missouri and Oklahoma State can be influenced by several factors, even if Missouri has more wins.
Let's break down the metrics and weights used in your calculation:
- Wins: Missouri has more wins (10 vs. 8).
- Losses: Missouri has fewer losses (2 vs. 3).
- Strength of Schedule (SoS): Oklahoma State has a higher SoS (0.85 vs. 0.75), indicating they played tougher opponents.
- Recent Performance: Oklahoma State has a better recent performance (0.9 vs. 0.6).
- Point Differential: Oklahoma State has a higher cumulative margin of victory (150 vs. 120).
The weights assigned to these metrics are:
- Wins: 0.3
- Losses: 0.2
- SoS: 0.25
- Recent Performance: 0.25
Here's the breakdown of the normalized metrics and the final power ranking scores:
teams = {'Missouri', 'Oklahoma State'};
recent_performance = [0.6, 0.9];
weights = [0.3, 0.2, 0.25, 0.25];
wins_norm = wins / max(wins);
losses_norm = 1 - (losses / max(losses));
sos_norm = sos / max(sos);
point_diff_norm = point_diff / max(point_diff);
scores = weights(1)*wins_norm + weights(2)*losses_norm + ...
weights(3)*sos_norm + weights(4)*recent_performance;
fprintf('%s Power Ranking Score: %.2f\n', teams{i}, scores(i));
end
Missouri Power Ranking Score: 0.74
Oklahoma State Power Ranking Score: 0.71
metrics = [wins_norm; losses_norm; sos_norm; recent_performance]';
legend({'Wins', 'Losses', 'Strength of Schedule', 'Recent Performance'});
title('Normalized Metrics Comparison');
ylabel('Normalized Score');
In this case, Oklahoma State's higher strength of schedule, better recent performance, and higher point differential contribute significantly to their overall power ranking score, even though Missouri has more wins. The weights assigned to each metric also play a crucial role in determining the final scores.
I hope this helps and clarifies your doubt.