How to detect outliers in the graph
조회 수: 6 (최근 30일)
이전 댓글 표시
Hello!
I have some data plotted below and I wanted to extract the points that were outliers to the data. I was wondering how to do that. I dont want to use the minimum function as it will extract all other values that I do not require (ex. values at 14).

댓글 수: 0
답변 (1개)
Star Strider
2022년 6월 24일
Either use findpeaks on the negative of the ‘y’ vector to get the indices of the valleys, or use islocalmin to get a logical vector of them. Set a threshold value and use those results to isolate them. Then set them to NaN and use the fillmissing function to interpolate them.
댓글 수: 2
Star Strider
2022년 6월 24일
My pleasure!
1 In all likelihood, yes.
2 My approach requires setting the outliers as NaN values. The fillmissing function would then interpolate the NaN values, depending on the arguments you choose to use. (Another approach might be to use the filloutliers function, however it might be difficult to decide how to define outliers with the data presented in the original post.)
Having a .txt file with the data (independent and dependent variables), it would be easier to illustrate and experiment with this approach.
참고 항목
카테고리
Help Center 및 File Exchange에서 Measurements and Feature Extraction에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!