I have a pandas dataFrame that consist of the following:
Athlete A Athlete B Athlete C
speed=10 speed=12 speed=6
endurance=60 endurance=59 endurance=64
I would like to rank the strength of those three Athletes based on their speed and endurance. I would like to give a slightly greater weight (0.6) to the endurance. Is there any python library to do rankings based on multiple conditions?