This function is used to detect decimal values.
See also
Other checks function:
check_colnames(),
check_duplicate_records(),
check_non_missing_value(),
check_object_type(),
check_value_match(),
detect_numeric_value(),
is_datadict_tbl()
Examples
if (FALSE) { # \dontrun{
# No decimal value is presented: return FALSE
detect_decimal_value(1:5)
detect_decimal_value(NA)
# Detect a decimal value: return TRUE
detect_decimal_value(seq(1, 5, by = 0.5))
# Detect a decimal value in a mixed string: return TRUE
detect_decimal_value(c("1", "2.0", "3", "999"))
} # }
