In SPSS, how do I collapse and recode a continuous variable?
In SPSS, you have two options for collapsing and recoding continuous
variables: the IF command and the RECODE
command.
The IF command
Suppose you have a variable score that you need to
collapse into five distinct categories in a new variable
grade:
These conditions break the variable score into five categories. For example, scores ranging from 80 to 90 are coded as 3 in the new variable.
The RECODE command
For the example above, you would use the following:
RECODE score (80 thru 90=3) (70 thru 80=2) (60 thru 70=1) (LOWEST thru 60=0) (90 thru HIGHEST=4) INTO grade. EXECUTE.Important: The order of the statements matters; that is, SPSS manipulates the statements in order. Therefore, all subjects having values between 80 and 90 in the variable score will have the value 3 in the new variable grade, and then all subjects having values between 70 and 80 except 80 (because 80 is defined in the previous statement) will have the value 2 in the new variable grade, and so forth.
For more about statistical and mathematical software, email the UITS Stat/Math Center, visit the center's web page, or phone 812-855-4724 (IUB) or 317-278-4740 (IUPUI). The center is located in Bloomington at 410 N. Park Avenue, and is open for consultation by appointment Monday-Friday 9am-5pm.
Last modified on March 24, 2011.







