I have a dataset which includes responses to a survey given to two groups. One of the group has 350 respondents, while the other is greater and contain ~ 4000 respondents. An example to a question is: How much time do you spend on TV, out of your total leisure time? The responses are: (a) A lot (b) Some time (c) Not that much etc.
Note that some of the answers as "ordinal" nature (e.g.: Always, often, sometimes, Never), and some are just multiple choice questions.
I am trying to show that both groups have similar proportions for each question.
I am quite confused with the possibilities. I tried to convert the responses I have to a table comparing each level's number of responses between the two groups. For example:
group1 group2
Never 20 200
Often 10 1500
Always 80 1300
and use this table as a matrix which is passed to chisq.test
, but I'm not sure it tests what I want to test. I also tested the possibility of wilcox test and read about prop.test but still - can't find the suitable method.
Any help would be very much appreciated!