Tell me how isoutlier function works

20 次查看(过去 30 天)
There is such a wonderful function isoutlier, but i can't understand
data=[27 27 17 64 27 27] % gives me the correct values
TF = isoutlier(data);
however, when the number of my values ​​increases significantly, I get errors
shows me the value 17, but does not show 64
  2 个评论
Steven Lord
Steven Lord 2019-11-22
Can you share a small section of code that when you run you "get errors" along with the full text of those error messages (all the text displayed in red) and any warning messages you may have received (all the text displayed in orange?)
Adam Danz
Adam Danz 2019-11-22
编辑:Adam Danz 2019-11-22
I'm guessing that "errors" means unexpected results such as points that aren't labeled as an outlier that the OP expects to be an outlier or vice versa.

请先登录,再进行评论。

回答(1 个)

Adam Danz
Adam Danz 2019-9-2
编辑:Adam Danz 2019-11-22
The algorithm is explained in the documentation. "By default, an outlier is a value that is more than three scaled median absolute deviations (MAD) away from the median". The link provides a relatively simple equation showing how the MAD are calculated.
The reason the outlier at y=64 is not identified when the number of values increase is because your median changes and 64 is no longer 3xMAD.
There are other methods you could try. Outlier detection is not trivial and there's no sure-fire way that detects all outliers in all situations. Even the definition of what constitutes an outlier is subjective in many cases.
If all of your outliers are large, positive spikes like in your example, you could simply set a threshold that is n standard deviations from the mean and any data points beyond that value can be considered outliers.

类别

Help CenterFile Exchange 中查找有关 Axis Labels 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by