Table of Contents
An outlier is formally defined as an observation point that lies an abnormal distance from other values in a random sample from a population. These unusual data points, often termed anomalies, are critical because their presence can severely distort statistical measures, leading to biased estimates, inflated standard errors, and potentially flawed conclusions derived from the analysis. Given the reliance on statistical software for drawing inferences, maintaining the integrity of the dataset is paramount, making accurate identification and management of these discrepancies a non-negotiable step in quantitative research.
This guide is tailored for researchers and analysts who utilize SPSS (Statistical Product and Service Solutions). It provides a systematic, step-by-step methodology for employing both visual and mathematical techniques within the software environment to detect and appropriately address outliers. By mastering these procedures, users can ensure their data analysis is robust, reliable, and resistant to the undue influence of extreme values.
The Crucial Role of Outlier Detection in Data Integrity
Before initiating any complex statistical modeling, it is essential to appreciate precisely why outlier detection is a foundational step in data cleaning and preparation. Outliers are not simply extreme values; they are often indicators of deeper issues within the data collection process or, in rare cases, genuinely unique events that necessitate specialized handling. These anomalies can arise from diverse sources, including simple human errors during data entry, complex instrument measurement failures, or conceptual errors such as sampling from a population that is not truly homogeneous.
Statistically, ignoring outliers can have devastating effects. They disproportionately influence measures sensitive to extreme values, such as the mean and standard deviation, effectively masking the true central tendency and variability of the data. Furthermore, their presence often violates fundamental assumptions of many parametric tests, such as normality and homoscedasticity, thereby invalidating the results of crucial tests like ANOVA or linear regression.
For analysts relying on SPSS, the strategy involves utilizing reliable visual and statistical methods to identify these detrimental effects early on. The most effective preliminary method is generating a box plot, a powerful graphical tool that efficiently summarizes the distribution of a variable and flags potential extreme values based on established statistical rules. To demonstrate these procedures, we will use a sample dataset illustrating the annual income (measured in thousands of currency units) for 15 hypothetical individuals.

Executing Visual Outlier Detection using SPSS Explore Function
The most intuitive and frequently used method for preliminary outlier detection in SPSS involves the Explore function. This utility is indispensable as it automatically calculates both descriptive statistics and generates high-quality graphical representations, including the all-important box plot, simultaneously. To begin the analysis, follow this structured, three-step navigational process:
- Navigate to the top menu bar and click the Analyze tab.
- Hover your cursor over the Descriptive Statistics option.
- Select the Explore option from the resulting submenu to open the main dialog box.
Once the primary dialog box is open, careful configuration of the variables and output options is required. Specifically, you must drag the continuous variable under scrutiny—in our working example, the income variable—into the designated field labeled Dependent List. Although the box plot is automatically generated by default, we must ensure we capture the necessary metrics required for manually defining outlier boundaries using the Interquartile Range (IQR) method. This requires clicking the Statistics button within the main dialog box.

Inside the Statistics submenu, it is crucial to confirm that the checkbox next to Percentiles is activated. Selecting this option instructs SPSS to calculate the necessary quartiles (specifically the 25th, 50th, and 75th percentiles), which are the building blocks for the IQR calculation. After confirming this selection, click Continue to return to the main dialog, and then click OK to execute the analysis and generate the comprehensive output.

Decoding the SPSS Box Plot: Symbols and Case Identification
Upon successful execution of the Explore function, SPSS displays the results in the Output Viewer, featuring various descriptive tables and, most importantly, the box plot. This visual output is the analyst’s fastest route to identifying potential anomalous observations within the variable’s distribution. The box plot graphically represents the five-number summary: the minimum observation, the first quartile (Q1), the median (Q2), the third quartile (Q3), and the maximum observation—with the IQR defining the central box itself.

The absence of any standalone symbols (circles or asterisks) outside the traditional whiskers indicates that the dataset contains no statistically defined standard or extreme outliers based on the conventionally accepted IQR rules. However, if anomalies are present, SPSS uses specific symbols for immediate flagging. A small circle (o) indicates a standard outlier, meaning the value falls between 1.5 and 3.0 times the Interquartile Range beyond the nearest quartile boundary. Conversely, a prominent asterisk (*) signifies an extreme outlier, which lies more than 3.0 times the IQR away from the nearest quartile.
Crucially, these symbols are always accompanied by a numeric label. This number corresponds directly to the case number (or row number) in your original dataset’s Data View. This feature is invaluable, as it allows the researcher to quickly trace the exact data point responsible for the anomaly, facilitating verification against raw source materials or enabling targeted data management strategies.
Mathematical Definition: Calculating Outlier Boundaries with the IQR Method
While the visual confirmation provided by the box plot is intuitive, a deep understanding of the underlying mathematical framework is essential for rigorous data analysis. SPSS relies on Tukey’s fences, utilizing the Interquartile Range (IQR) method, to formally classify observations as standard outliers. A standard outlier is any data value falling outside the fences defined by 1.5 times the IQR below the first quartile (Q1) or above the third quartile (Q3).
Specifically, a value is flagged as a standard outlier if it satisfies either of the following criteria:
- Value > 3rd quartile + (1.5 * Interquartile Range)
- Value < 1st quartile – (1.5 * Interquartile Range)
To execute this calculation manually, we reference the output table generated by the Explore function, specifically the row labeled Tukey’s Hinges, which provides the values for the 25th percentile (Q1) and the 75th percentile (Q3). The IQR itself is calculated simply as the difference between these two quartile values (Q3 – Q1).

Using our income dataset example, the 75th percentile (Q3) is 82 (thousands) and the 25th percentile (Q1) is 36 (thousands). Therefore, the Interquartile Range (IQR) is calculated as 82 – 36, yielding a value of 46. We can now use this IQR value to determine the formal boundaries (Tukey’s inner fences) for standard outliers:
- Upper Bound (Q3 + 1.5 * IQR): 82 + (1.5 * 46) = 151
- Lower Bound (Q1 – 1.5 * IQR): 36 – (1.5 * 46) = -33
Given that income is a positive variable, the practical lower bound is zero. However, any income value exceeding 151 (in thousands of currency units) would be formally classified as a standard outlier according to the 1.5 IQR rule in this specific distribution.
Distinguishing Between Standard and Extreme Anomalies (3.0 IQR Rule)
In addition to standard outliers, SPSS provides the functionality to identify extreme outliers, which are data points situated even further away from the main body of the data. These observations pose a considerably greater risk to the robustness and reliability of statistical models and are thus flagged differently. An extreme outlier is defined by Tukey’s outer fences: any value that lies outside of 3 times the Interquartile Range from the nearest quartile.
Mathematically, extreme outliers fall outside of these extended ranges:
- Value > 3rd quartile + (3 * Interquartile Range)
- Value < 1st quartile – (3 * Interquartile Range)
Using the calculated IQR of 46 from our income dataset, the boundaries for extreme outliers are calculated as follows:
- Upper Bound for Extreme Outliers: 82 + (3 * 46) = 220
- Lower Bound for Extreme Outliers: 36 – (3 * 46) = -102
The visualization in SPSS clearly differentiates these two types of anomalies. If we were to introduce a single income value of 152 (just above the standard outlier threshold of 151), the box plot displays a circle (o) at observation 15, indicating a standard anomaly:

In stark contrast, replacing the largest value with 221 (just above the extreme outlier threshold of 220) results in the box plot showing a clear asterisk (*) at observation 15. This visual distinction confirms its classification as a more severe, extreme anomaly that requires heightened scrutiny.

Strategic Management and Treatment of Identified Outliers
Identifying an outlier is only the first step; the subsequent decision regarding its treatment is crucial and depends heavily on the root cause of the anomaly. Researchers must make an informed, documented decision based on whether the outlier represents a genuine but rare event, a measurement error, or a simple data entry mistake. Generally, there are three primary, accepted strategies for managing these unusual observations, each with its own methodological implications:
-
Verification and Correction of Data Entry Errors:
The initial and most statistically sound action is thorough verification. The vast majority of outliers are artifacts created by simple human transcription or keying errors. For example, if a recording shows a value of 150 but it was entered as 1,500, correcting this mistake is mandatory. By tracing the case number identified in the box plot back to the original raw data sources, researchers can confirm the value’s accuracy. If an error is found, the value should be corrected, and the analysis rerun. This preserves the case and maximizes data fidelity.
-
Removal or Exclusion of the Outlier:
If the value is verified as true but is believed to originate from a population or process irrelevant to the study’s primary objective—for instance, a response from an unqualified participant—removal may be justified. Exclusion is also considered when the outlier exerts excessive leverage on statistical models, particularly in small samples. However, this option must be approached with caution. If removal is chosen, it is an ethical and methodological requirement to fully document the exclusion criteria and report the number of removed cases in all resulting reports or publications to ensure complete transparency.
-
Imputation or Assignment of a New Value (Winsorizing):
A third approach is to mitigate the outlier’s extreme influence without entirely discarding the data point. This technique, often referred to as winsorizing, involves replacing the anomalous value with a less extreme, more representative statistic. Common replacements include the mean or median of the remaining non-outlying observations, or setting the outlier value to the boundary of the inner fence (the nearest non-outlying value, such as 1.5 times the IQR from the quartile). This strategy retains the full sample size, which is beneficial for statistical power, while effectively neutralizing the skewing effect of the extreme observation.
Advanced Techniques: Addressing Multivariate Anomalies
The box plot method, while highly effective, is designed solely for detecting univariate outliers—anomalies within a single variable, such as income. However, in sophisticated research, analysts often work with complex multivariate datasets where an observation may appear normal on every individual variable but is highly unusual when considering the combination of several variables simultaneously.
When your analysis involves multiple variables and their relationships, more advanced techniques are necessary. The calculation of the Mahalanobis distance is the standard approach for detecting these multivariate anomalies. This statistical measure accounts for the covariance structure of the variables, measuring the distance of a specific case from the multivariate mean (centroid) of all cases in a multidimensional space. A case with a significantly large Mahalanobis distance is flagged as a multivariate outlier. Understanding and utilizing these advanced tools ensures that your data cleaning process in SPSS is comprehensive, thorough, and ultimately leads to more reliable statistical inferences and conclusions that accurately reflect the underlying population.
Cite this article
Mohammed looti (2025). Learning Guide: Identifying and Handling Outliers in SPSS. PSYCHOLOGICAL STATISTICS. Retrieved from https://statistics.arabpsychology.com/identify-outliers-in-spss/
Mohammed looti. "Learning Guide: Identifying and Handling Outliers in SPSS." PSYCHOLOGICAL STATISTICS, 8 Nov. 2025, https://statistics.arabpsychology.com/identify-outliers-in-spss/.
Mohammed looti. "Learning Guide: Identifying and Handling Outliers in SPSS." PSYCHOLOGICAL STATISTICS, 2025. https://statistics.arabpsychology.com/identify-outliers-in-spss/.
Mohammed looti (2025) 'Learning Guide: Identifying and Handling Outliers in SPSS', PSYCHOLOGICAL STATISTICS. Available at: https://statistics.arabpsychology.com/identify-outliers-in-spss/.
[1] Mohammed looti, "Learning Guide: Identifying and Handling Outliers in SPSS," PSYCHOLOGICAL STATISTICS, vol. X, no. Y, ص Z-Z, November, 2025.
Mohammed looti. Learning Guide: Identifying and Handling Outliers in SPSS. PSYCHOLOGICAL STATISTICS. 2025;vol(issue):pages.