Remove jumps like peaks and steps in timeseries

前端 未结 2 2119
情话喂你
情话喂你 2021-01-13 15:52

I have quite a few sensors in the field that measure water pressure. In the past the height of these sensors have been changed quite a few times creating jumps in the timese

2条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-13 16:08

    You have sharp peaks and steps in your data. I guess you want to

    • remove the peaks and replace by some averaged values
    • remove the steps by cumulative changing the offset of the remaining data values

    That's in line with what you said in your last comment. Please note, that this will alter (shift) big parts of your data!

    It's important to recognize that the width of both, peaks and steps, is one pixel in your data. Also you can handle both effects pretty much independently.

    I suggest to first remove the peaks, then remove the steps.

    1. Remove peaks by calculating the absolute difference to the previous and to the next data value, then take the minimum of both, i.e. if your data series is y(i) compute p(i)=min(abs(y(i)-y(i-1)), abs(y(i+1)-y(i))). All values above a threshold are peaks. Take them and replace the data values with the mean of the previous and the next pixel like.

    2. Now remove the steps, again by looking for absolute differences of consecutive values (as suggested in the comment by AreTor), s(i)=abs(y(i)-y(i-1)) and look for values above a certain threshold. The positions are the step positions. Create an zero-valued offset array of the same size, then insert the differences of the data points (without the absolute value), then form the cumulative sum and subtract the result from the original data to remove the steps.

    Please note that this removes peaks and steps which go up as well as down. If you want to remove only one kind, just don't take the absolute value.

提交回复
热议问题