mean_removing_outli​ers(X, RMZEROVALS)

Compute Mean and St.Dev. after outliers' removal
63.0 次下载
更新时间 2017/5/15

查看许可证

[M,SD,Cx] = mean_removing_outliers(X,RMZEROVALS)

Compute the (non-parametric) robust mean (M) and the standard deviation (SD)
of a given vector or matrix (X). The resulting values are considered robust as they are
computed ITERATIVELY removing those observations that are classified as outliers.
Instead of using the classical "Tukey's Boxplot" method (where observation Xi
is considered outlier if Xi < Q1 - 1.5·IQR or Xi > Q3 + 1.5·IQR), this algorithm uses a slightly
different method to detect outliers. Here, Xi is considered an outlier if
Xi < Q1 - 1.5*(Q2-Q1) or Xi > Q3 + 1.5*(Q3-Q2). This method is more conservative
(as the interval containing valid observations is in general narrower than
that defined by Tukey's method, thus usually leading to a bigger no. of
detected outliers) but at the same time it is more "tailored" on the actual
empirical distribution.
NOTE: NaN values are excluded from the computation.

INPUT

X : vector
RMZEROVALS : if '1', zero values are removed from the
computation. default RMZEROVALS is 0, meaning that
zero values are used in the computation.

OUTPUT

M : Robust mean (i.e. computed after outliers removal)
SD : Robust Standard Deviation (i.e. computed after outliers removal)
Cx : vector of the conserved (i.e. non-outliers) observations

引用格式

Ruggero G. Bettinardi (2024). mean_removing_outliers(X, RMZEROVALS) (https://www.mathworks.com/matlabcentral/fileexchange/62953-mean_removing_outliers-x-rmzerovals), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2009a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Probability Distributions 的更多信息
标签 添加标签

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0.0