Winsorising data

This function executes a simple winsorization of data
626 descargas
Actualizado 15 mar 2018

Winsorising or Winsorization is the transformation of statistics by
limiting extreme values in the statistical data to reduce the effect of
possibly spurious outliers. It is named after the engineer-turned-biostatistician
Charles P. Winsor (1895–1951). The effect is the same as clipping in
signal processing. The distribution of many statistics can be heavily
influenced by outliers. A typical strategy is to set all outliers to a
specified percentile of the data; for example, a 90% Winsorisation would
see all data below the 5th percentile set to the 5th percentile, and data
above the 95th percentile set to the 95th percentile. Winsorised
estimators are usually more robust to outliers than their more standard
forms, although there are alternatives, such as trimming, that will
achieve a similar effect. Note that Winsorizing is not equivalent to
simply excluding data, which is a simpler procedure, called trimming.
In a trimmed estimator, the extreme values are discarded; in a Winsorized
estimator, the extreme values are instead replaced by certain percentiles
(the trimmed minimum and maximum).
Thus a Winsorized mean is not the same as a truncated mean. For instance,
the 5% trimmed mean is the average of the 5th to 95th percentile of the
data, while the 90% Winsorised mean sets the bottom 5% to the 5th
percentile, the top 5% to the 95th percentile, and then averages the data
Syntax: Y=WINSORISING(X,W)
X - data matrix or vector
For vectors, WINSORISING(X) is the winsorized X array.
For matrices, WINSORISING(X) is a matrix containing the
winsorized element from each column.

W - Amount of winsoritazion (90 by default). If you set W=90 this
means that the remaing 10% (0-5th percentile and 95-100th
percentile) will be substituted.

Example:

x=[92 19 101 58 103 91 26 78 10 13 0 101 86 85 15 89 89 25 2 41];

Calling on Matlab the function: winsorizing(x)

Answer is:

y=92 19 101 58 102 91 26 78 10 13 1 101 86 85 15 89 89 25 2 41

Created by Giuseppe Cardillo
giuseppe.cardillo-edta@poste.it

To cite this file, this would be an appropriate format:
Cardillo G. (2011). WINSORISING: WINSORISING Data
http://www.mathworks.com/matlabcentral/fileexchange/32327

Citar como

Giuseppe Cardillo (2024). Winsorising data (https://github.com/dnafinder/winsorising), GitHub. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2014a
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre Statistics and Machine Learning Toolbox en Help Center y MATLAB Answers.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

No se pueden descargar versiones que utilicen la rama predeterminada de GitHub

Versión Publicado Notas de la versión
1.1.0.0

input parser

1.0.0.0

Para consultar o notificar algún problema sobre este complemento de GitHub, visite el repositorio de GitHub.
Para consultar o notificar algún problema sobre este complemento de GitHub, visite el repositorio de GitHub.