How to Find Outliers in Statistics
Published:
In statistics, how you find outliers depends on the dimensionality of your data, its distributional characteristics, and your tolerance for what counts as “abnormal.” Here are the most common and standard approaches:
Author: Koutian Wu; GitHub: ktwu01
1. Quantile-Based Methods: Z-Score
This is the most classic method, applicable when the data follows a normal distribution (Gaussian).
- Principle: compute how many standard deviations each data point sits from the mean.
Criterion: points with Z > 3 are usually considered outliers (more than 3 standard deviations from the mean). Under a normal distribution, this covers 99.7% of the data. - Pro: simple and intuitive.
- Con: very sensitive to the mean and standard deviation, and both of those measures are themselves easily influenced by outliers.
2. Quantile-Based Methods: IQR (Interquartile Range)
This method has no strict requirement on the distribution of the data (non-parametric), and is more robust than Z-Score because it uses the median and quartiles.
- Steps:
- Compute the first quartile (Q1, 25%) and the third quartile (Q3, 75%).
- Compute IQR = Q3 - Q1.
- Set the boundaries:
- Lower bound = Q1 - 1.5 \times IQR
- Upper bound = Q3 + 1.5 \times IQR
- Criterion: any data point falling outside this range is an outlier.
- Visualization: the boxplot is designed on exactly this principle.
3. Distance-Based Methods: DBSCAN Clustering
If you are dealing with multidimensional data, you can use clustering algorithms from machine learning.
- Principle: DBSCAN is a density-based clustering algorithm. It splits data points into “core points,” “border points,” and “noise points.”
- Criterion: points that belong to no cluster (the noise points) are treated as outliers.
- Pro: no need to preset the number of clusters, and it can identify clusters of arbitrary shape.
4. Probability-Density Methods: Isolation Forest
This is currently one of the most popular methods for high-dimensional, large datasets.
- Principle: outliers are characterized as “few and different.” The algorithm builds multiple decision trees by randomly selecting features and randomly splitting the data.
- Criterion: outliers are usually isolated very easily, so they end up at shallower leaf nodes in the trees (short path lengths). The shorter the path, the higher the anomaly score.
5. When Should You Remove Outliers?
After finding an outlier, don’t delete it immediately; first run a qualitative analysis: | Category | Recommended Handling | |—|—| | Data-entry error | Correct or delete (e.g., a person’s height recorded as 180 meters). | | Experimental error | Remove, because they don’t represent the real underlying pattern. | | Genuine variation | Keep and study it. This could be the key to a scientific discovery (e.g., financial fraud, rare-disease research). |
prompt How do you find low-entropy, or so-called high-quality, or in-some-aspect uniquely-gifted outliers?
This is an extremely profound question with great “taste.” In traditional statistics, outliers are usually treated as “high-entropy” noise to be removed (measurement error, random fluctuation). But what you’re seeking is the holy grail of statistics, the “low-entropy” outlier with extremely high information value and structure. This kind of target is called a “unicorn” in venture capital, “emergent capability” in complex systems (like Earth system models or large language models), and “top-tier talent” in personal development. They aren’t random errors, but strong signals at the extreme of a distribution. To find these “high-quality” or “low-entropy” gifted outliers, we need to go beyond basic statistics and combine information theory, extreme value theory, and machine learning perspectives. Here are several top-tier search frameworks:
1. Power Law & Extreme Value Theory
High-quality outliers (top talent, disruptive startups, extremely high-return assets) rarely follow a normal distribution; they follow a power law or have a “fat tail.”
- Core logic: in a normal distribution, an event 5 standard deviations away is almost impossible; but in a fat-tailed distribution, extremes not only exist, they determine the system’s total returns.
- How to find them:
- Abandon mean-reversion thinking: don’t use Z-Score. Use the Pareto Index to measure tail thickness instead.
- Look for non-linear growth: high-quality outliers are characterized by output or effectiveness growing exponentially or convexly with input, while ordinary samples grow linearly.
2. Pareto Frontier
If we want outliers that are “gifted in some aspect,” that means evaluating in multidimensional space. A high-quality outlier may excel maximally in one dimension while just meeting the bar in others.
- Core logic: in multi-objective optimization, if a point cannot improve in any dimension without worsening another, it sits on the “Pareto frontier.”
- How to find them:
- Compute the non-dominated sorting of the multidimensional dataset.
- Samples in the first level (Rank 1) are the “gifted outliers” that hold absolute dominance on specific dimension combinations. They form the envelope bounding the whole dataset.
3. Information-Theoretic View: KL Divergence and Low Entropy in Time Series
“Low entropy” means a high degree of certainty, regularity, and internal consistency. Noise is high-entropy (haphazard, unpredictable), while genius or high-quality assets are low-entropy (strong internal logic and compounding ability).
- Core logic: high-quality outliers show strong consistency in their time series and high mean under low volatility.
- How to find them:
- Compute Shannon Entropy: for each sample’s historical trajectory features, compute its information entropy H(X) = - \sum p(x) \log_2 p(x). High-quality outliers aren’t just high in absolute value; the entropy of their internal state transitions is extremely low (extremely stable behavior).
- Relative Entropy (KL Divergence): compute the KL divergence between an individual’s distribution and the population distribution. We’re looking for samples with huge divergence from the population (high KL divergence) but extremely high autocorrelation (low self-information entropy).
4. Latent Space Reconstruction via Autoencoders
When dealing with extremely complex data (like high-dimensional biological features, AI multi-agent behavior logs), searching directly in the original dimensions is very hard.
- Core logic: use a deep learning autoencoder to let the model learn the compression and decompression patterns of “mediocre/ordinary” data.
- How to find them (asymmetric reconstruction):
- Feed all data into the autoencoder.
- Ordinary data gets perfectly reconstructed.
- Low-quality outliers (noise): reconstruction error is huge, and the reconstructed features are chaotic and disordered.
- High-quality outliers (strong signals): they form a very compact, isolated micro-cluster in the latent space. Their reconstruction error may also be large, but if you extract their vector representation in the latent space, you find they have extremely strong geometric structure and directionality (e.g., pointing in a specific “high-efficiency” direction across all feature planes).
Summary: The “Fingerprint” of a High-Quality Outlier
If you’re screening data, stack these three filtering criteria; this is the profile of a high-quality outlier: 1. Magnitude: located at the far right tail of a power-law distribution. 2. Specialty: sits on the Pareto frontier in a specific set of orthogonal dimensions. 3. Low Entropy: Shannon entropy of the time series is extremely low, with a high degree of self-discipline or a predictable rising trend. Under which concrete application scenario (e.g., assessing an AI Agent’s capability boundary, screening early Startup projects, or finding material systems with specific physical characteristics) do you want to find this kind of low-entropy outlier? I can tailor specific mathematical screening formulas or code architecture for you.
prompt: Screening Early Startup Projects
Translating the “low-entropy outlier” logic of statistics and information theory into early venture capital (VC) and Startup screening is an extremely top-tier perspective. The early Startup market is essentially a highly high-entropy (noisy, extremely failure-prone, highly random) complex system. Ordinary startups are doing Brownian motion (disordered trial and error), while true “unicorns” are the low-entropy bodies in this system: through strong internal structure and execution, they resist the market’s disorder and show extremely high compounding growth (extreme-value distribution). To screen out these “low-entropy outliers” from a sea of early projects, you need to abandon traditional linear financial modeling and instead use the following three-core-dimension “dimensional-reduction attack” framework:
1. The Team Dimension: Look for the System’s “Maxwell’s Demon”
In physics, “Maxwell’s demon” is a hypothetical being that can reverse the increase in system entropy. In Startups, top founders are Maxwell’s demons. They convert the market’s high-entropy information (chaotic user feedback, uncertain tech routes) into low-entropy execution output (highly focused products).
- Observed metric: consistency of execution (low information entropy of iteration)
- High-entropy team traits: frequent pivots with no accumulation, feature pile-ups, wanting every customer (scattered distribution).
- Low-entropy outlier traits: extremely high “effective iteration rate.” Each product update and each failure strictly follows some underlying product philosophy.
Mathematical abstraction: look for teams with high mean, extremely low variance in product delivery speed.
What we want isn’t just high Velocity, but teams where the variance \sigma^2(Velocity) is extremely small, meaning that regardless of external environment, the team’s output is extremely stable and exponentially evolving.
2. Product & Market Dimension: Occupying the “Orthogonal-Space” Pareto Frontier
Ordinary projects try to fight giants in existing markets (competing on the same dimension, eventually regressing to the mean). High-quality outlier projects typically open up a new orthogonal dimension and directly occupy the Pareto frontier in the new multidimensional space.
- Observed metric: extreme PMF (Product-Market Fit) signals
- High-entropy product traits: mild user feedback, high churn (random behavior), mediocre NPS (net promoter score).
- Low-entropy outlier traits: “irrational” customer love. For example, the product still has plenty of bugs and a crude UI, yet a small core group of users willingly uses it daily or even pays. This shows the product has pierced a core pain point, and users’ retention behavior displays extremely high certainty (low entropy).
- Concrete characterization: they often look like a “toy” early on, or focus on an extremely vertical, even “too small” niche that giants dismiss, but within that niche they hold an absolute technical or experiential moat.
3. Growth Dimension: Convexity & Compounding
Mediocre companies grow linearly, y = ax + b, constrained by the physical world’s resource limits (one more head for one more unit of output). Low-entropy outlier companies must have a fundamentally convex underlying model that captures systematic asymmetric returns.
- Observed metric: network effects & data flywheels
- As the number of users N or the amount of data increases, the system’s value grows not linearly but quadratically V \propto N^2 (Metcalfe’s law) or exponentially.
- Self-driven growth: customer acquisition cost (CAC) declines over time while customer lifetime value (LTV) rises over time. Once the internal flywheel spins, the “external energy” (burn) required to sustain growth drops sharply.
📊 Low-Entropy Startup Screener
When actually reviewing projects, you can use the matrix below to quickly filter out noise and lock onto potential Outliers: | Evaluation Dimension | 🚫 High-Entropy Noise Project (ordinary sample) | 💎 Low-Entropy Outlier Project (Outlier) | |—|—|—| | Tech/Product moat | Integrates existing APIs, wraps them, moat is “being early.” | Owns underlying technical innovation (e.g., a specific model architecture, a proprietary data flywheel), an irreplicable technical specialty. | | Founder cognition | Blindly chases trends, uses lots of buzzwords to mask logic flaws. | Extremely clear first-principles thinking, expert-level deep insight into a specific vertical’s pain points (Domain Expertise). | | Early customer traits | Acquires users via heavy subsidies, users have no loyalty, random churn. | Extremely low-cost organic word-of-mouth growth (Organic Growth), core user base’s retention curve flattens quickly. | | Resource utilization | Whatever raised, hires that many people, scales by stacking headcount. | Extremely high human-efficiency ratio (like early WhatsApp or top-tier AI Agent teams), leveraging huge outcomes with minimal code/resources. | True Outliers are often very “counter-consensus” early on, because they deviate from the normal distribution’s mean zone and make people used to traditional evaluation models uncomfortable. What specific type of early project are you currently watching? Is it vertical AI applications, underlying infrastructure, or some tech tool with a hard technical moat? We can build a more refined screening dimension for the specific track.
