Indiana University
University Information Technology Services
  
What are archived documents?
Login>>
Login

Login is for authorized groups (e.g., UITS, OVPIT, and TCC) that need access to specialized Knowledge Base documents. Otherwise, simply use the Knowledge Base without logging in.

Close

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:

IF (score > 90) grade=4. IF (score <=90 AND score >= 80) grade=3. IF (score <80 AND score >=70) grade=2. IF (score <70 AND score >=60) grade=1. IF (score <60) grade=0.

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.

This is document afqo in domain all.
Last modified on March 24, 2011.

Comments/Questions/Corrections

Use this form to offer suggestions, corrections, and additions to the Knowledge Base. We welcome your input!

If you are affiliated with Indiana University and would like assistance with a specific computing problem, please use the Ask a Consultant form, or contact your campus Support Center.

Contact Information

Note: We will reply to your comment at this address. If your message concerns a problem receiving email, please enter an alternate email address.