Here’s the situation - I have a data table of football players and all their various attributes (quickness, strength, etc.). What I want to do is sort players per position type, per attribute, in order to find out where a given player ranks versus their peers. For example, I want to display that Russell Wilson ranks 4th among all quarterbacks in the “Accuracy” category.
I AM able to extract all attribute data (such as “Accuracy”) for a given player position…but I have no idea how to go about sorting all the quarterback’s accuracy ratings and then figuring out where a given player ranks on that list.
Any tips here? I feel like this should be way easier than I’m making it.