Removing outliers from data

3 次查看(过去 30 天)
AU
AU 2019-5-31
编辑: Adam 2019-5-31
How can I remove outliers of a vector where an outlier is defined as a point more than three standard deviations from the mean of the data in matlab 2R2017b? I also want to remove outliers using a 10 day moving average or a smoothed average.

采纳的回答

Adam
Adam 2019-5-31
编辑:Adam 2019-5-31
threshold = 3 * std( data );
validRange = mean( data ) + [-1 1] * threshold;
dataWithoutOutliers = data( data >= validRange(1) & data <= validRange(2) );
should do the first bit, though that is typed off the top of my head, not tested.
doc movmean
should help with a moving average if you are using R2016a or later.
  2 个评论
AU
AU 2019-5-31
Thank you for the answer Adam. The last line gives me the error: Operands to the || and && operators must be convertible to logical scalar values. How can I solve it?
Adam
Adam 2019-5-31
编辑:Adam 2019-5-31
Ah, yes. I've corrected the answer now, using just a simple & to AND together non-scalar arrays.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Descriptive Statistics 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by