Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

I've got more than 20 (10 point likert scale) variables with more than 1000 entries each. What I want to do is compare the means of the answers on the questions.

A one-way anova seems suitable for this, but you can only categorize by the values of a variabele. I want to categorize by question, the variable itself.

Is there any way to do this without having to put all answer beneath each other and having another variable saying which question it is.

Just to be clear, I've got:

variable: question1 --> 1000 entries ranging from 1 to 10

variable: question2 --> 1000 entries ranging from 1 to 10

...

variable: question20 --> 1000 entries ranging from 1 to 10

I want to compare the means of the different questions with one-way anova but I can't choose to factor by question.

share|improve this question

1 Answer

  • If the same 1000 participants answered each question:
    • consider using paired samples t-tests and repeated measures ANOVAs
  • If a different 1000 participants answered each question:
    • then it sounds like you need to restructure your data file to conform to the expectations of the statistical package you are using.
share|improve this answer
Thanks, I forgot about the repeated measures :) – J. Maes Apr 14 '11 at 11:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.