Skip to content
Advertisement

Group by and find top n value_counts pandas

I have a dataframe of taxi data with two columns that looks like this:

JavaScript

Basically, each row represents a taxi pickup in that neighborhood in that borough. Now, I want to find the top 5 neighborhoods in each borough with the most number of pickups. I tried this:

JavaScript

Which gives me something like this:

JavaScript

How do I filter it so that I get only the top 5 from each? I know there are a few questions with a similar title but they weren’t helpful to my case.

Advertisement

Answer

I think you can use nlargest – you can change 1 to 5:

JavaScript

additional columns were getting created, specified level info

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement