I have a survey which contains several Check all that apply questions. I am using Tableau to do visualization but I failed to split the data into different columns due to the limitation of Tableau Desktop(Seems you need to use Tableau Prep). So I have been thinking about using python to get this done, the table is like this:
Q: Which would you like to know more about? (select all that apply)
id answer
001 A; B; C
002 A
003 B; C
004 A; C
So, I'd like to get the result like this:
Answer Count
A 3
B 2
C 3
Can anyone help?