qat_analyse_lim_rule_static_1d
Perform a static lim-rule-check
This check tests data on whether it exceeds a static threshold.
- Keywords
- ts
Usage
qat_analyse_lim_rule_static_1d(measurement_vector, min_value, max_value)
Arguments
- measurement_vector
- The measurement vector, which should be tested
- min_value
- The minimum threshold
- max_value
- The maximum threshold
Details
This check tests every element, on whether it exceeds the minimum or maximum threshold. The result will be given back as a list, which contains the result of the test as a flagvector and its parameters. For every element of the measurement vector the flagvector contains a -1, if its exceeding the minimum value, a 1, if its exceeding the maximum value, or a 0, when no exceeding has happend.
Value
-
It returns a list with the following entries:
Warning
There is no checking, if the maximum-value is greater than the minimum-value.
References
Meek, D.W., Hatfield, J.L. (1994) Data quality checking for single station meteorological databases, \_Agricultural and Forest Meteorology\_, *69* (1-2), 85-109.
See Also
qat_plot_lim_rule_static_1d
, qat_call_lim_rule
, qat_analyse_lim_rule_dynamic_1d
, qat_analyse_lim_rule_sigma_1d
Examples
vec <- rnorm(1000)
result <- qat_analyse_lim_rule_static_1d(vec, -2,2)