Skip to content
Advertisement

count multiple value in dataframe

I have a dataframe that shows answers of a multiple choice question of 5 students:

JavaScript

And I want to count how many times does a choice been selected. For example, the final answer should be

JavaScript

So is there a quick way to get the solution using python?

Besides, I am using the data from the dataframe for visualization in Tableau. Tableau counts like this:

JavaScript

So is there a way to get the above result directly using Tableau? Or I have to do something in python then using tableau.

Thanks

Advertisement

Answer

You can try below code to count the occurrence of each choice in a pandas dataframe column:

JavaScript

output:

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