Skip to content
Advertisement

Tag: rank

how rank is calculated in pandas

I confuse to understand rank of series. I know that rank is calculated from the highest value to lowest value in a series. If two numbers are equal, then pandas calculates the average of the numbers. In this example, the highest value is 7. why do we get rank 5.5 for number 7 and rank 1.5 for number 4 ?

Advertisement