How to remove outlier by 2.5 standard deviations from the mean?
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
nai chen yeh
am 2 Mär. 2020
Kommentiert: Asger Emil Joergensen
am 21 Mai 2021
I'm really new to Matlab, and hope someone can help me!
I tried to use the function 'filloutliers' to remove and replace the outliers, but i want to detect outliers by 2.5 standard deviation instead of 3 (default).
Is it possible to do that by filloutliers, or should i use other functions?
i saw someone used plot to remove outliers, but i don't know how.
Looking forward to be answered, thanks in advance!
0 Kommentare
Akzeptierte Antwort
Adam
am 2 Mär. 2020
Looking at the help in
doc filloutliers
this should work:
filloutliers(A,'center','mean','ThresholdFactor', 2.5)
replacing A with whatever your array is called.
2 Kommentare
Asger Emil Joergensen
am 21 Mai 2021
Hello
What replaces the oulier in this case? The computed mean value?
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Curve Fitting Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!