remove outliers form timeseries

17 次查看(过去 30 天)
I have an original timeseries ts and I would like to apply a filter for removing the outliers. In particular I define a percentile criteria for filtering the original ts:
[B,TF]=rmoutliers(ts.Data,'percentiles',[5 95]);
Such operation returns two objects: a filtered ts.Data, that is B, and the logical vector Tf in which if the element is outlier the corresponding element is equal to 1, otherwise is equal to 0.
Now my question is:
how to build a timeseries with the filtered data B and the corresponding datetime vectors?

采纳的回答

Daniel M
Daniel M 2019-11-11
If timevector is the name of your datetime vector, then you can mask out the outliers using
timevector_good = timevector(~TF); % this is the "good" data points
  1 个评论
Adam Danz
Adam Danz 2019-11-11
You can use the TF logical vector to identify non-outlier indices.
ts.Data(~TF)
dateTimeVector(~TF)
My answer moved here as a comment to supplement Daniel's answer.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Time Series Events 的更多信息

标签

产品


版本

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by