Σ
SDCalc
IntermedioAplicaciones·9 min

Detección de valores atípicos con desviación estándar

Aprenda a identificar valores atípicos en sus datos utilizando la desviación estándar. Domine la regla de 3 sigma, el método IQR y comprenda cuándo deben eliminarse los valores atípicos.

¿Qué son los valores atípicos?

Los valores atípicos son puntos de datos que difieren significativamente de otras observaciones. Pueden ser causados por errores de medición, errores de ingreso de datos, o podrían representar casos genuinamente inusuales que merecen investigación.

El punto naranja en (10, 50) es un valor atípico

La regla de 3 sigma

Para datos con distribución normal, los puntos que se encuentran más allá de 3 desviaciones estándar de la media se consideran valores atípicos. Ocurren menos del 0.3% de las veces por azar.

Valor atípico si

x < μ - 3σ OR x > μ + 3σ

Ejemplo

Si las calificaciones de examen tienen μ = 75 y σ = 10: - Límite inferior: 75 - 30 = 45 - Límite superior: 75 + 30 = 105 - Cualquier calificación por debajo de 45 o por encima de 105 es un valor atípico

Método de puntuación Z

Calcule la puntuación Z para cada dato. Si |z| > 3 (o a veces 2.5), se trata de un valor atípico.

Puntuación Z

z = (x - μ) / σ

Opciones de umbral

- |z| > 3: Conservador (detecta menos valores atípicos) - |z| > 2.5: Moderado - |z| > 2: Liberal (detecta más valores atípicos)

Método IQR (alternativa)

El método del rango intercuartílico (IQR) es más robusto frente a valores atípicos porque no utiliza la media ni la desviación estándar.

1

Paso 1

Encontrar Q1 (percentil 25) y Q3 (percentil 75)
2

Paso 2

Calcular IQR = Q3 - Q1
3

Paso 3

Cerca inferior = Q1 - 1.5 × IQR
4

Paso 4

Cerca superior = Q3 + 1.5 × IQR
5

Paso 5

Los puntos fuera de las cercas son valores atípicos

Tratamiento de valores atípicos

No elimine automáticamente

Los valores atípicos no siempre son errores. Antes de eliminarlos, investigue: - ¿Es un error de ingreso de datos o de medición? - ¿Es un valor extremo genuino? - ¿Representa un caso límite importante?

Cuándo eliminar

- Errores de ingreso de datos confirmados - Mal funcionamiento del equipo de medición - Fuera del rango posible de valores

Cuándo conservar

- Representa variabilidad real - Es importante para su análisis - Eliminarlo sesgaría los resultados

Further Reading

How to Read This Article

A statistics tutorial is a practical interpretation guide, not just a formula dump. It refers to the assumptions, notation, and reporting language that analysts need when they explain a result to a teacher, manager, client, or reviewer. The article body covers the specific topic, while the sections below create a common interpretation frame that readers can reuse across related metrics.

Reading goalWhat to focus onCommon mistake
DefinitionWhat the metric is and what quantity it summarizesTreating the formula as self-explanatory
Formula choiceSample versus population assumptions and notationUsing n when n-1 is required or vice versa
InterpretationWhether the result indicates concentration, spread, or riskCalling a large value good or bad without context

Frequently Asked Questions

How should I interpret a high standard deviation?

A high standard deviation means the observations are spread farther from the mean on average. Whether that spread is acceptable depends on the context: wide dispersion might signal risk in finance, instability in manufacturing, or genuine natural variation in scientific data.

Why do some articles mention n while others mention n-1?

The denominator reflects the difference between population and sample formulas. Population variance and population standard deviation use N because the full dataset is known. Sample variance and sample standard deviation often use n-1 because Bessel’s correction reduces bias when estimating population spread from a sample.

What is a statistical interpretation guide?

A statistical interpretation guide is a page that moves beyond arithmetic and explains meaning. It tells you what a metric is, when the formula applies, and how to describe the result in plain English without overstating certainty.

Can I cite this article in a report?

You should cite the underlying authoritative reference for formal work whenever possible. This page is best used as an explanatory bridge that helps you understand the concept before quoting the original standard or handbook.

Why include direct citations on every article page?

Direct citations give readers a route to verify the definition, notation, and assumptions. That improves trust and reduces the chance that a simplified explanation is mistaken for the entire technical standard.

Authoritative References

These sources define the concepts referenced most often across our articles. Bessel's correction is a sample adjustment, variance is a squared measure of spread, and standard deviation is the square root of variance expressed in the same units as the data.