This post will cover how to add the number of times a certain response has been given for a variable (its frequency or count), and append this information to the data set as a new variable in SPSS. For example, say you have a list of names. Next to each name you’d like to add the number of times the name appears in the list. In SPSS, this information is easy to view with the “frequencies” dialogue, but how do you add it as a variable automatically?

Say you have this list of names in a variable called “name” in SPSS. See figure 1 for an example.

Figure 1 – This is the list of names we will use in this example.

If you want to know how often each name appears in the list, simply use the “frequencies” command (Analyze > Descriptive Statistics > Frequencies) for the variable “name.” The output looks something like this.

Figure 2 – Output of Frequencies command in SPSS

Next to each name in the data set, we want a new variable with the number output by Frequencies. That is, we want every instance of “Kurt” to have “4” in this variable, every instance of “Paul” to have “2,” and all the others to have “1.”

In order to do this, SPSS needs an identifier variable. This is a variable that uniquely identifies each case in your data set. If your data set does not already have one (Qualtrics, for example, provides the identifier variable “ResponseID”), you must generate one. Go to Compute Variable (Transform > Compute Variable). Call the “Target Variable:” “ID” and in the “Numeric Expression:” block type “$CASENUM”. This will add a variable called “ID” to the data set, the value of which will be the number of each case (rows are called cases in SPSS).

To add the frequencies as a variable, use the “Aggregate” function (Data > Aggregate). Bring the variable “name” over to the “Break Variable(s)” box. Next, bring the variable “ID” to the “Summaries of Variable(s):” box. With “ID_mean = MEAN(ID)” highlighted in the “Summaries of Variable(s)” box, click on the “Function…” button. From the right of the dialogue, select “Unweighted” under the heading “Number of cases.” Click “Continue.” The “Aggregated Variables” box now says “ID_nu = NU(ID).” Click “OK.” See figure 3.

Figure 3 – What the aggregate dialogue should look like just prior to clicking “OK”

You now have the variable you need. It should look as it does in figure 4.

Figure 4 – The frequencies are now added to the SPSS data set in a variable called “ID_nu”

One thought on “How to Add Frequencies as a Variable in SPSS”

  1. Worked perfectly. Note that I needed to count the frequency of two variables – gender and preference for 4 types of movies. I just moved both variables into the “break” section in the order that I wanted them, and it worked fine. Thank you for this tutorial. Drove myself in circles for awhile, but I am back on track thanks to this blog post.

Leave a Reply

Your email address will not be published. Required fields are marked *