Hi,
newbie question again… I’d say others have done this loads of times…
We have survey results and we are charting them.
One of the questions is multiple choice. (Q3 in below example)
So, we have a row for each response in the dataframe, in the answer column for the multiple choice question, Q3, we get strings of numbers representing the choices the user picked.
So the data in the csv file might look a bit like this:
date, Q1, Q2, Q3
xxx, 4, 6, “4,10,12”
xxx,3,3,“10”
xxx,4,7,“4,6,10”
etc
etc
I need to make a histogram of the answers in Q3.
Not sure what way to go about this… is there anything built-in to the histogram to cater for this shape of data?
Or do I have to do something myself to pivot the data some way in python?
Thanks in advance.
1 post - 1 participant