I have data for each individual participant from a survey. Each individual has a vector of data for example :
#[a,b,c]
[1,2,5] # 1 participant
...
...
...
[1,3,4]
Instead of having that kind of data, I have the data column wise. Example :
a = [1...1] # has n values equal to participants
b = [2...3] # has n values equal to participants
c = [5...4] # has n values equal to participants
I need to plot this data somehow to represent it clearly as a figure, does anybody have ideas how to plot this all together? I have plotted them individually as bar plots with frequencies, but I would like them to be plotted together as a 3D plot so that all 3 dimension's values can be inferred from the data. I have around 200 participants. Any suggestions are welcome.
zipto change between the two formats you describe.zip([1, 2, 5], [1, 3, 4])becomes[(1, 1), (2, 3), (5, 4)].