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

Z-Test and Confidence Interval Proportion Tool

Z-Test for Single Proportion - What Is It?

There's two basic tests for testing a single proportion:

For larger samples, these tests result in roughly similar p-values. However, the binomial test only comes up with a 1-tailed p-value unless the hypothesized proportion = 0.5. Moreover, it can't compute a confidence interval for your proportion.
The z-test does not have these 2 limitations and is among the more widely used statistical tests. Very oddly, however, it's absent from SPSS. Plenty of reasons for us to present this very simple tool in the remainder of this tutorial.

Installation

SPSS Confidence Interval Single Proportion Tool - Main Dialog
  1. This tool requires SPSS version 18 or higher with the SPSS Python Essentials properly installed and tested.
  2. Download the Confidence Interval Proportion tool.
  3. For SPSS versions 18 through 22, select Utilities SPSS Menu Arrow Extension Bundles SPSS Menu Arrow Install Extension Bundle. For SPSS 24, select Extensions SPSS Menu Arrow Install Local Extension Bundle.
    Navigate to the confidence intervals extension (its file name ends in “.spe”, short for SPSS Extension) and install it.
  4. Although you'll get a popup that the extension was successfully installed, it'll only work after you close and reopen SPSS entirely (unless you're on version 24).
  5. You'll now find the tool under Utilities SPSS Menu Arrow Confidence Interval Proportion.

Operations

  1. The test variables must have exactly two valid values. Variables violating this requirement will be skipped when calculating results.
  2. The test variables may be any mixture of numeric and string variables.
  3. The p-values and confidence intervals are based on the central limit theorem. This approximation is sufficiently accurate if p0*n and (1-p0)*n >5 where p0 denotes the population proportion under H0 and n is its related sample size.1 If this does not hold for one or more variables, a note will be added to the results.
  4. If any SPLIT FILE is in effect, the tool will switch if off, throw a warning that it did so and then proceed as usual.
  5. If a WEIGHT variable is in effect, results will be based on rounded frequencies. P-values may be biased if you're using non integer sampling weights but this holds for all p-values in SPSS except for those from the complex samples module.2,3,4

Example

We'll now test our tool on test.sav, part of which is shown below. Our null hypothesis is that the population proportions of all dichotomous variables = 0.5.

Data View for Test.sav

Data Inspection

We'll run a quick data check with FREQUENCIES to see if we need to specify any user missing values. This happens to be the case so we'll do just that.

*Show value and value labels in output.

set tnumbers both.

*Basic frequency tables.

frequencies q1 to passes.

*Set missing values.

missing values q1 to q4 (2).

*Show only value labels in output.

set tnumbers labels.

Result

SPSS Confidence Interval Proportion Tool - Frequencies Table for Checking Missing Values

Computing our Confidence Intervals

We'll go to Utilities SPSS Menu Arrow Confidence Interval Proportion and fill out the main dialog as below.

SPSS Confidence Interval Proportion Tool - Example

Note that TO may be used for a range of variable names.
Clicking Paste results in the syntax below.

*Note: requires confidence interval proportion tool to be properly installed in order to run.

CONFIDENCE_INTERVAL_PROPORTION VARIABLES = 'q1 to passes' TESTPROP = 0.5 LEVEL = 95.

Results

Running our syntax results in a new dataset holding our results. Note that most variables have variable labels explaining their precise meaning. You can see them in variable view or hover over a variable’s name in data view as shown in the screenshot below.

SPSS Confidence Interval Proportion Tool - Meaning of Results

We find back our (valid) frequencies in these results. Each test variable has in 2 rows, one for each value. You'll probably need just one of these rows but this configuration circumvents the need for specifying test values for each variable. We simply test both -whatever they may be.

SPSS Confidence Intervals Proportion - Final Results

Further right we find our z-test. Its p-value indicates the probability of finding the observed sample proportions if its population counterpart is exactly equal to the test proportion. Note that a continuity correction has been used for computing the z-values and their associated p-values. Finally, the last variables in our results hold our confidence intervals and -possibly- some notes on the results.

Reporting Examples

Obviously, include your sample proportions and sample size in your report. Regarding the z-tests, we'll write something like “the proportion of people who answered q1 correctly did not differ from 0.5, as indicated by a z-test: z = 1.59, p = 0.11.”or “A z-test showed that more than 50% of our population answers q2 correctly, z = 2.0, p = 0.046.”

Thanks for reading, hope you'll like it!

References

  1. Van den Brink, W.P. & Koele, P. (2002). Statistiek, deel 3 [Statistics, part 3]. Amsterdam: Boom.
  2. Fowler, F.J. (2009). Survey Research Methods. Thousand Oaks, CA: SAGE.
  3. De Leeuw, E.D., Hox, J.J. and Dillman, D.A. (2008). International Handbook of Survey Methodology. New York: Lawrence Erlbaum Associates.
  4. Kish, L. Weighting for Unequal Pi. Journal of Official Statistics, 8, 183-200.

Tell us what you think!

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

THIS TUTORIAL HAS 16 COMMENTS: