フィルターのクリア

remove outlier in large data

3 ビュー (過去 30 日間)
azar mzory
azar mzory 2014 年 1 月 10 日
編集済み: azar mzory 2014 年 4 月 13 日
my question how to find outlier in matlab explain by code and example ? and how many methods ? how to find outlier?

採用された回答

Image Analyst
Image Analyst 2014 年 1 月 11 日
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 件のコメント
azar mzory
azar mzory 2014 年 1 月 12 日
how i want to check all columns one by one cuz some columns have words should be neglect how many ways to find outlier in big text data ? it is not clear any code
Image Analyst
Image Analyst 2014 年 1 月 15 日
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?

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeRandom Number Generation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by