Solved – How to detect changes in amplitude

change pointrtime series

I have timeseries like this:

enter image description here

as you can see there are changes regarding the amplitude. Is there a test to check this kind of changes?

Important annotations:

  1. I do not know if the series have changes in amplitude
  2. If there is a change in amplitude I do not know the point of the change
  3. The changes can be more then ONE (but I only need to know if there is a change in amplitude, for my tests the numbers of changes is not important)
  4. As you can see the means are common
  5. I do not have groups I have series in a numeric vector (R vector), I only subdivided the above series in three groups to show the three changes in amplidute, but it is very obvious.

Best Answer

Try package ‘changepoint’, described here:

http://www.lancs.ac.uk/~killick/Pub/KillickEckley2011.pdf

It is able to detected changepoints in both mean and variance.

Related Question