Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I resolved the following question but I have another issue. I would like to analyse "Likert Scale" questionaire which is measured 1 to 5 ( agree, strongly agree etc ). I tried many ways but I didn't combine all results. Have you got any idea to analyze likert scale?


Does anybody help us to define following type of question in SPSS variable view? ( looks like array question, user answers non unique which they can enter text )

QUESTION 1:

Allows a table of text inputs
+----------------------------------------------+
|            Speed     Design      Accuracy    |
+----------+---------+----------+--------------+
| Google   |         |          |              |
+----------+---------+----------+--------------+
| Yahoo    |         |          |              |
+----------+---------+----------+--------------+
| Bing     |         |          |              |
+----------+---------+----------+--------------+
share|improve this question
Question is not clear. Please rephrase it! – djhurio Apr 1 '11 at 10:16
@djhurio I changed the question, could you please check again? – Oğuz Çelikdemir Apr 1 '11 at 12:17

1 Answer

up vote 0 down vote accepted

I am not sure I know what you are asking, but I believe you are looking for some guidance as to what the "dataset" might need to look like. If you run the following syntax, you should get a better idea of how I would structure it.

DATA LIST LIST (",") / browser (A30) type (A30) score.
BEGIN DATA  
Google, Speed, 123
Yahoo, Speed, 34
Bing, Design, 23
Google, Accuracy, 231
Yahoo, Design, 12
END DATA.
share|improve this answer
I resolved my above question but I have another issue. I would like to analyse "Likert Scale" questionaire which is measured 1 to 5 ( agree, strongly agree etc ). I tried many ways but I didn't combine all results. Have you got any idea to analyze likert scale? – Oğuz Çelikdemir Mar 30 '11 at 22:52

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.