Skip to content
Advertisement

How to use df groupby to return counts on specific values in column across each month

I have a dataframe made up of dummy car purchases across a year which looks like:

df =

JavaScript

What I’m looking for is to get an aggregated count of each brand of car for each month in 2021, so it would look like this:

df =

JavaScript

So far I’ve used this code to group by the year, month but I can’t split it to count individual brands:

JavaScript

This returns:

JavaScript

Advertisement

Answer

Use crosstab with month periods:

JavaScript

Your solution is with add column brand, aggregate GroupBy.size and Series.unstack:

JavaScript

Alternative:

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