Flag Quality Control Values
Usage
flag_qc(
df,
dynamic_range = NULL,
verbose = TRUE,
flags = c("all", "spike", "interval_jump", "spike_second", "same_value",
"device_limit", "all_zero", "impossible")
)
flag_qc_all(
df,
dynamic_range = NULL,
verbose = TRUE,
flags = c("all", "spike", "interval_jump", "spike_second", "same_value",
"device_limit", "all_zero", "impossible")
)Value
A data set with a `flags` column (`flag_qc`) or a number of columns starting with `flag_*` (`flag_qc_all`)
Examples
res = acti_raw_data
out = flag_qc(res)
#> Flagging Spikes
#> Flagging Interval Jumps
#> Flagging Spikes at Second-level
#> Flagging Repeated Values
#> Flagging Device Limit Values
#> Warning: No dynamic range found in header, using data estimate
#> Flagging Zero Values
#> Flagging 'Impossible' Values