remove outlier in large data
1 view (last 30 days)
Show older comments
my question how to find outlier in matlab explain by code and example ? and how many methods ? how to find outlier?
0 Comments
Accepted Answer
Image Analyst
on 11 Jan 2014
Try this:
% data = the variable name of your array
stdDev = std(data(:)) % Compute standard deviation
meanValue = mean(data(:)) % Compute mean
zFactor = 1.5; % or whatever you want.
% Create a binary map of where outliers live.
outliers = abs(data-meanValue) > (zFactor * stdDev);
4 Comments
Image Analyst
on 15 Jan 2014
I don't know how to define outliers in text (words). For example, in this comment that you're reading now, which of the words are "outliers" and why?
More Answers (0)
See Also
Categories
Find more on Data Preprocessing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!