How to detect outliers in the graph

조회 수: 6 (최근 30일)
R
R 2022년 6월 24일
댓글: Star Strider 2022년 6월 24일
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).

답변 (1개)

Star Strider
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
R
R 2022년 6월 24일
Thank you for your answer.
  1. I am writing an algorithm that would work with any y axis values and varying 'thresholds'. Would this work fine?
  2. Also why would we use fillmissing to interpolate?
Thanks!
Star Strider
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 CenterFile Exchange에서 Measurements and Feature Extraction에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by