Community Profile

photo

Divyashree


Last seen: 2 years ago Active since 2018

Followers: 0   Following: 0

Statistics

  • First Review

View badges

Feeds

View by

Question


Hello, currently I'm working on outlier detection techniques. Can I detect outliers in multivariate datasets with three-sigma rule? If yes, then how?
m=mean(meas) m = 5.8433 3.0573 3.7580 1.1993 >> d=std(m) d = 1.9185 >> d=3*std(m) d = ...

6 years ago | 1 answer | 0

1

answer

Question


Has anyone ever applied cook's distance method on fisheriris/wine/glass or similar datasets for outlier detection? Did it work? How?
load fisheriris; X = double(meas(:, 2:4)); y = meas(:,1); mdl = fitlm(X,y); k=mdl.Diagnostics.CooksDistance; find((mdl.Diag...

6 years ago | 1 answer | 0

1

answer