Skip to content
Advertisement

Filter and calculate % of a dataframe column

I am trying to calculate the % of men and women in a dataframe column named “gender”.

“gender” is defined as an object taking 3 values : “Man” “Woman” “nan” (NA).

I did this :

JavaScript

But it returns 0.0% for both.

When i check ‘total’ value it returns : 10123033 but zero for both ‘men’ and ‘women’ Thanks.

Advertisement

Answer

pay attention maybe in your dataframe “man” or “men” or “Men” exist instead of “Man” and for woman …

try this:

JavaScript

output:

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