I don’t know that there’s a sort function, but if you want smallest to largest, you can pass the array to a function, (get a copy of array), then iterate through using “Get Min of Int/Float Array” to pluck the index of the smallest, then remove it from the array, repeating until all are read.
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.