Despiking algorithm

The ISFS despiking algorithm is taken from the paper, "A Statistical Data Screening Procedure," by Jorgen Hojstrup, Meas. Sci. Technol., 4, 1993, pg 153-157.

A data point is detected as a spike if it deviates from a forecasted point by a discrimination level, L, times the standard deviation:

/sites/default/files/files_live/private/despiker-1.gif

Where xi is the ith data point, and xf = xi-1 * ci + ( 1 - ci ) * mi, is the forecasted data point.

For computing efficiency, the mean, mi, auto correlation, ci, and variance, vi, are approximated by running statistics:

/sites/default/files/files_live/private/despiker-7.gif
/sites/default/files/files_live/private/despiker-8.gif
/sites/default/files/files_live/private/despiker-9.gif

The statistics memory size, n, is adjusted periodically:

/sites/default/files/files_live/private/despiker-11.gif

The input parameters to the despiker are the minimum probability of a spike, usually 1e-5, and a level adjustment factor, usually 2.5. Choosing a minimum probability of a spike selects an initial discrimination level, based on a Gaussian distribution. See plot of Discrimination Level vs Chosen Probability. Due to the finite size of the statistical sample, the discrimination level is then multiplied by the adjustment factor. The discrimation level is then periodically updated (every 25 points) by a factor based on the correlation, see plot of Correlation vs Discrimination level adjust factor.

L = [initial level] * [level adjustment] * [correlation factor]

 
/sites/default/files/files_live/private/despiker-13.gif
/sites/default/files/files_live/private/despiker-14.gif