Skip to content
Advertisement

Pandas DENSE RANK

I’m dealing with pandas dataframe and have a frame like this:

I want to make an equialent to DENSE_RANK () over (order by year) function. to make an additional column like this:

How can it be done in pandas?

Thanks!

Advertisement

Answer

Use pd.Series.rank with method='dense'

enter image description here

Advertisement