FAQ/rescore - CBU statistics Wiki

Upload page content

You can upload content for the page named below. If you change the page name, you can also upload content for another page. If the page name is empty, we derive the page name from the file name.

File to load page content from
Page name
Comment
Flind the wroneg tetters tin eaech wrord

location: FAQ / rescore

Summing rescored scales in SPSS

Suppose we have three items in a questionnaire taking values between 1 and 4. Scores of 3 or 4 on scales q1 and q2 and 1 or 2 on scale q3 correspond to clinical depression. We wish to re-code these items into depressed or not depressed and sum over them. Both these operations can be done simultaneously using the count command.

This can also be accessed from the menu using transform…count….

Alternatively we can open a syntax window by going to File…New…syntax…. and simply typing in:

count depress = q1 q2 (3,4) q3(1,2).
freq var depress.

We can compute more than one total scale score using the same command. For example to create depression and anxiety scores by summing dichotomised items:

count depress = q1 q2 (3,4) q3(1,2)
           /anxiety= q4(3,4) q5(1,2).
freq var depress anxiety.

We separate each summation with a slash.

We can flag cases with one or more item missing values:

count x=q2 to q5 (missing)
freq var x.

and then just use complete cases:

temporary.
select if x=0.
freq var depress anxiety.

Syntax can be run from the menu bar or by positioning the cursor at the end of the syntax and pressing Ctrl and R.