SPSS tutorials website header logo SPSS TUTORIALS BASICS ANOVA REGRESSION FACTOR CORRELATION

SPSS Numeric Variables Basics

Introduction

Having a basic understanding of SPSS numeric variables allows you to work fast and with a sense of confidence. This tutorial aims at accomplishing just that by pointing out some essential basics. You may follow along with this tutorial by downloading and opening hospital.sav.

SPSS Hospital Dataset

SPSS Numeric Variables - What Are They?

Numeric variables are one of SPSS' two variable types. They can be defined as variables that contain only numbers as values.More precisely, their values are double-precision floating-point numbers. This is not as obvious as it seems because numeric values may not look like numbers at all.
When we realize that the values we see may be (very) different from the actual values, we'll get things done much more efficiently, especially when it comes to date variables and time variables. We'll demonstrate this point with some examples in a minute.

SPSS Numeric Formats

SPSS' standard numeric format is the “F” format. It controls how values are shown. For example, F5.2 is shown as “12.34” Basic rules for the F format are that

SPSS Numeric Variable Format under Variable View

A possible source of confusion here is that SPSS will always attempt to show all integers, even if insufficient characters are set. For example, run formats visit_id(f1). on our data. We see under variable view that the width for visit_id is indeed 1 but under data view we still see 5 digits.For now, all seems fine. However, the insufficient variable width may cause problems in some cases.
Other numeric formats in SPSS include date, time, datetime and some others. We'll discuss those in separate tutorials.

SPSS Numeric Variables - Hidden Decimals

A main point of this tutorial is that the actual numeric values in SPSS may differ from the values we see. Realizing this takes away a lot of confusion. In order to make this clear, let's inspect the frequency table for gender by running FREQUENCIES. The screenshot shows the resulting table.

*1. Show both values and value labels in output.

set tnumbers both.

*2. Frequencies gender.

frequencies gender.
SPSS Numeric Variables Hidden Decimals in Output

Nothing remarkable thus far, right? Ok, let's now do something unusual: we'll add 0.1 to all values of gender and rerun the table we just saw. The result is shown in the next screenshot.

*1. Add 0.1 to the actual values of gender.

compute gender = gender + .1.

*2. Due to the F1 format, 0.1 is shown as 0 and 1.1 as 1.

frequencies gender.
SPSS Numeric Variables Hidden Decimals in Output

What happened to the value labels? Well, nothing; the value labels were given to values 0 and 1 but gender now holds 0.1 and 1.1 as values. No labels were given to those values.
The confusing part is that 0.1 and 1.1 are shown as 0 and 1 in the output viewer window. The same goes the data view. However, here we see the actual value in the formula bar after selecting a cell. This is shown by the screenshot.

SPSS Numeric Variables Hidden Decimals in Data Editor

The situation really becomes clear by displaying an extra decimal. We can do so by running formats gender(f3.1). Keep in mind that showing an extra decimal doesn't change anything about the actual values. They are still 0.1 and 1.1. Now, you may think that we can always see the actual values in the formula bar when we click one of the cells as shown in the screenshot. However, this doesn't hold for other numeric formats than F as we'll show next.

SPSS Numeric Variables - Datetime

Now, let's click on any value of exit_moment. The formula bar will show exactly the value we clicked as shown in the screenshot.

SPSS Numeric Variables Datetime

Remember that numeric variables may contain only numbers. So the value we see, including some letters, can't be the actual value. In order to see the latter, run formats exit_moment(f1).

SPSS Numeric Variables Datetime

As we see in the formula bar, the actual value is a huge number with many decimals. Why is this relevant? Well, its this actual value that numeric functions operate upon.
Now, without getting too far ahead of things, SPSS datetime variables contain numbers of seconds. Since an hour contains 3600 seconds, simply adding 3600 to all values is equivalent to increasing them by one hour. This also works if we display our datetime values in datetime format as the syntax below demonstrates.

*1. Show datetime as datetime22 format ("8-Jan-2013 19:34:05").

formats exit_moment(datetime22).

*2. Set all datetime values one hour ahead.

compute exit_moment = exit_moment + 3600.
exe.

Tell us what you think!

*Required field. Your comment will show up after approval from a moderator.