Skip to content

Tag: pandas-groupby

Pandas groupby counting values > 0

I have a pandas df of the following format I am looking to transform it such that I land up with the below result Essentially for “HIGH_COUNT” and “LOW_COUNT” I want to count the number of occurrences that column was greater than 0, grouped by “MATERIAL”. I have tried to do…