Many easy options have been proposed for combining the values of categorical variables in SPSS. However, the real information is usually in the value labels instead of the values. This tutorial proposes a simple trick for combining categorical variables and automatically applying correct value labels to the result.
SPSS Combine Categorical Variables Example
You may follow along by downloading and opening hospital.sav. Now say we'd like to combine “doctor_rating” and “nurse_rating” (near the end of the file). The result is shown in the screenshot below. Note that all variables are numeric with proper value labels applied to them.
SPSS Combine Categorical Variables Syntax
We first present the syntax that does the trick. Next, we'll point out how it how to easily use it on other data files.
string tmp(a1000).
*2. Combine values and value labels of doctor_rating and nurse_rating into tmp string variable.
compute tmp = concat(
"doctor_rating = ",string(doctor_rating,f1)," (",rtrim(valuelabels(doctor_rating)),") ",
"nurse_rating = ",string(nurse_rating,f1)," (",rtrim(valuelabels(nurse_rating)),") "
).
*3. Convert string variable into numeric.
autorecode tmp
/into doctor_and_nurse_rating.
*4. Delete tmp string variable.
delete variables tmp.
*5. Optionally, apply variable label to end result.
variable labels doctor_and_nurse_rating 'Combination of doctor_rating and nurse_rating'.
SPSS Combine Categorical Variables - Other Data
We realize that many readers may find this syntax too difficult to rewrite for their own data files. So instead of rewriting it, just copy and paste it and make three basic adjustments before running it:
- replace “doctor_rating” by the name of the first variable you'd like to combine. Note that you can do so by using the ctrl + h shortkey.
- replace “nurse_rating” by the name of the second variable you'd like to combine.
- replace “doctor_and_nurse_rating” by the variable name you'd like to use for the final result.
SPSS Combine Categorical Variables - System Missing Values
You may have noticed that the value labels of the combined variable don't look very nice if system missing values are present in the original values. An example of such a value label is doctor_rating = 3 (Neutral) nurse_rating = . (). A nicer result can be obtained without changing the basic syntax for combining categorical variables. Prior to running this syntax, simply RECODE system missing values. Use a value that's not yet present in the original variables and apply a value label to it. The syntax below shows how to do so.
recode doctor_rating nurse_rating (sysmis = 7).
*2. Apply value label to new value.
add value labels doctor_rating nurse_rating 7 'System missing'.
*3. Proceed with remaining syntax from here.
After doing so, the resulting value label will look as follows: doctor_rating = 3 (Neutral) nurse_rating = 7 (System missing). Further, note that the syntax we used made a couple of assumptions. Most real world data will satisfy those. We'll walk through them below.
SPSS Combine Categorical Variables - Assumptions
- Although the syntax combines two variables, it can be expanded to incorporate three or more variables.
- It is assumed that all values in the original variables consist of single digits. If two or three digit values are present, replace
f1
byn2
orn3
.Then3
format left pads numbers with zeroes and thus keeps their alphabetical order equal to their numerical order.
Further Reading
Those who'd like a closer look at some of the commands and functions we combined in this tutorial may want to consult string variables, STRING function, VALUELABEL, CONCAT, RTRIM and AUTORECODE.
THIS TUTORIAL HAS 26 COMMENTS:
By Ruben Geert van den Berg on March 24th, 2023
Simply create categories for your numerical variable and combine those with the genre.
One option here is RECODE (0 - 4 hours = 1, 5 - 8 hours = 2 and so on).
A completely different option is to base categories on percentiles (lowest 25% = 1, lowest 26% through 50% = 2 and so on).
A nice way to do this is using RANK with something like
RANK hours
/ntiles(4) into hourgroups.
where /ntiles(4) creates 4 groups (quartiles) that are as equally sized as possible.
Hope that helps!
SPSS tutorials