Hello,
I am trying to figure out how I can take a given list of ranked outcomes and find the average outcome from the lists.
Say there are 5 runners who each raced 3 times and each race had a different outcome.
I want to find the average place of each runner to determine an average ranking.
Say Runner 1 gets 1st, 1st, and 2nd respectively.
Runner 2 gets 2nd, 4th, and 5th respectively.
Runner 3 gets 3rd, 5th and 1st.
Runner 4 gets 4th, 2nd and 4th.
Runner 5 gets 5th, 3rd and 3rd.
The list I would want should come out to:
R1, with Avg. 1.33
R3 with Avg. 3
R4 with 3.33
T- R2 and R5 with 3.67
I want to be able to do this with More than 5 runners and more than 3 races, that is just an example.
The "Runners" with be labeled by the their Names.
Wondering if there is a quicker way of doing this rather than going runner by runner and calculating their position.
Let me know if I can clarify anything else or if any additional information is needed.
Thanks
I am trying to figure out how I can take a given list of ranked outcomes and find the average outcome from the lists.
Say there are 5 runners who each raced 3 times and each race had a different outcome.
I want to find the average place of each runner to determine an average ranking.
Say Runner 1 gets 1st, 1st, and 2nd respectively.
Runner 2 gets 2nd, 4th, and 5th respectively.
Runner 3 gets 3rd, 5th and 1st.
Runner 4 gets 4th, 2nd and 4th.
Runner 5 gets 5th, 3rd and 3rd.
The list I would want should come out to:
R1, with Avg. 1.33
R3 with Avg. 3
R4 with 3.33
T- R2 and R5 with 3.67
Race 1 | Race 2 | Race 3 | AVG | |
1st Place | Runner 1 | Runner 1 | Runner 3 | R1 |
2nd Place | R2 | R4 | R1 | R3 |
3rd Place | R3 | R5 | R5 | R4 |
4th Place | R4 | R2 | R4 | R2 |
5th Place | R5 | R3 | R2 | R5 |
I want to be able to do this with More than 5 runners and more than 3 races, that is just an example.
The "Runners" with be labeled by the their Names.
Wondering if there is a quicker way of doing this rather than going runner by runner and calculating their position.
Let me know if I can clarify anything else or if any additional information is needed.
Thanks