필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Has anyone ever applied cook's distance method on fisheriris/wine/glass or similar datasets for outlier detection? Did it work? How?

조회 수: 1 (최근 30일)
load fisheriris; X = double(meas(:, 2:4)); y = meas(:,1); mdl = fitlm(X,y); k=mdl.Diagnostics.CooksDistance; find((mdl.Diagnostics.CooksDistance)>3*mean(mdl.Diagnostics.CooksDistance));
  댓글 수: 1
William Mueller
William Mueller 2018년 5월 18일
There’s an application in econometrics here:
https://www.mathworks.com/help/econ/examples/time-series-regression-iii-influential-observations.html

답변 (1개)

Bernhard Suhm
Bernhard Suhm 2018년 5월 18일
You can find an example for using Cook's (and related) distances to pick out unusual years in the financial history here. Not sure how much that'll help you with your project.

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by