Which type of test is most appropriate for this comparative-descriptive study? I have two groups of subjects (250 in each). My goal is to determine if the two subject groups are different and if so, how. I'm using an online survey of 50 statements (embedded are 5 statements about 10 different possible factors). Subjects rate these statements on a Likert scale from "strongly agree" to "strongly disagree". Do I have to use a t-test or a logistic regression to determine categorical differences, and predictors?
|
|
If you have a likert scale with a lot of levels, say about 10, then it's sort of OK to treat the values of the likert scale interval. Small scales should not be treated this way. Ordinal logistic regression could be used on these questions regardless of whether there are a large or small number of levels and it's designed specifically for this kind of thing. There's a fairly nice ordinal package in R. You'll want the clm command, or maybe clmm command. A more specific question could help here. |
|||
|
|
|
The t-test is not appropriate for the data you have. With ordinal data or Likert scales, as in your case, you should use Wilcoxon's rank-sum test, sometimes also called the Mann–Whitney U test. Using this test, you can assess for each of the 50 statements if there is a statistically significant difference between the two groups. This test should be available in your favorite statistical software. Moreover, it is not too hard to compute this test using a spreadsheet. |
|||||
|
|
(I wanted to comment on lejohn's post, but I can's seem to find the option anywhere.) Likert scales are almost always treated as interval level data. I'm guessing that, based on your original post, you will not be treating each item separately, but will be aggregating to create 10 subscales composed of 5 items each (using either the sum or the mean score). Unless these subscales have distributions that are extremely non-normal or have wildly heterogeneous variances between your subsamples, you are safe, and in my opinion advised, to use a t test (and perhaps a Bonferroni correction or similar). |
|||||||||||||||||||
|