• The Cumulative Sum (CUSUM) can be applied to detect some potential signal shifts (Carslaw et al., 2006; Andersen et al., 2009).
  • A CUSUM procedure is developed by plotting the accumulated residuals between a measured variable and is used to test whether there is evidence that the residual time series is nonstationary or inhomogeneous.
  • The change point can be calculated by interpretation of CUSUM chart.
  • However, bootstrap analysis is done to ascertain the confidence level to quantify the mostly likely timing of change and to estimate the uncertainty associated with a change point.
  • The following link gives information about CUSUM and bootstrap process: http://www.variation.com/cpa/tech/changepoint.html
  • I performed bootstrap in MATLAB using the command: [bootstat,bootsam] = bootstrp(...) which was used as [bootstat,bootsam] = bootstrp(1000,@mean,A) to generate 1000 resamples with mean function for the data vector [A].
  • But the confidence level estimated from these 1000 samples (using the example data set in above link) was found to be very low! That's what is making me confused regarding application of CUSUM method. Please if anyone can help me out!
Similar questions and discussions