Returns a logical vector indicating whether a given check column equals "ok".
If the column does not exist in the data, all cases are treated as passing.
Details
Used inside the plausicheck() function.
Examples
example_df <- data.frame(check_ip = c("ok", "nope", "ok", "OK"))
check_ok(example_df, "check_ip")
#> [1] TRUE FALSE TRUE FALSE