3. The dataset, $`X_k`$, surrounding $`x_{k}`$, within `noise_window_size` range,
but excluding $`x_{k}`$, is not too noisy. Wheras the noisyness gets measured
by `noise_statistic`:
*`noise_statistic`$`(X_k) <`$ `noise_barrier`
This Function is a generalization of the Spectrum based Spike flagging
...
...
@@ -127,6 +137,16 @@ Dorigo,W,.... Global Automated Quality Control of In Situ Soil Moisture
Data from the international Soil Moisture Network. 2013. Vadoze Zone J.
doi:10.2136/vzj2012.0097.
All parameters default to the values given there.
| parameter | description |
| ------ | ------ |
| raise_factor | Float. (Default=0.15). <br/> Minimum change margin for a datapoint to become a candidate for a spike. See condition (1). |
| dev_cont_factor | Float. (Default=0.2). <br/> See condition (2). |
| noise_barrier| Float. (Default=1). <br/> Upper bound for noisyness of data surrounding potential spikes. See condition (3).|
| noise_window_size| Offset String. (Default='12h'). <br/> Size of the timewindow of the "surrounding" data of a potential spike. See condition (3). |
| noise_statistic| String. (Default="CoVar"). <br/> Operator to calculate noisyness of data, surrounding potential spike. Either "Covar" (=Coefficient od Variation) or "rvar" (=relative Variance).|