Replace extreme outliers in dataset
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi,
I want to replace "extreme" outliers in a data set. The data set varies quite a lot in terms of values, i.e. the maximum values are 50 times larger than the minimum values. However, in circa 0.05 % of the data points there are obvious mistakes depending on measurements errors. These values are at least 10 times larger than the maximum values in the data set. My question is therefore:
- How can I replace the wrong value with the average of the value to the left and to the right of the wrong one? I know about the function "filloutliers" but the function finds values more than three local standard deviations away from the local mean. I need 5 or 6 means because of the large spread in data.
Kind regards!
답변 (2개)
David Wilson
2019년 4월 10일
Have you considered hacking the source of filloutliers.m? If it is only a matter of scaling, then it is probably a simple one line change.
David Wilson
2019년 4월 10일
편집: David Wilson
2019년 4월 10일
Not difficult to hack, but slightly more complex to hack correctly. Just copy (and rename) the function into your work directory, and
>> which filloutliers
C:\Program Files\MATLAB\R2018b\toolbox\matlab\datafun\filloutliers.m
>> !copy "C:\Program Files\MATLAB\R2018b\toolbox\matlab\datafun\filloutliers.m" myFillOutliers.m
1 file(s) copied.
>> edit myFilloutliers
I'd start hacking on about line 335.
But there seems to be a problem calling the (invisible) function locateoutliers. You might have better luck carefully hacking the original function.
댓글 수: 3
dpb
2019년 4월 10일
I wouldn't recommend that route; bring the private functions need along as well so don't end up with base routine not doing what it does for other uses.
Plus, if do that and every install either a new release or a patch to the current, everything you've done will get overwritten and you'll have to do it all over again.
I used to do some things like that with a copule of particular functions that I didn't like their behavior but finally came to realize it was not the way to get the desired functionality for the longer term...
Drewsky3
2019년 12월 11일
Sooooo. . . . if you had an old lisence that never updated, and then someone had a new lisence, could you copy the new function library to the older version's program file?
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!