Check if any rows for a column are not NA.
See also
Other dataEvaluations:
dropColsWithAllNA(),
dropRowsWithAllNA(),
is.nan.data.frame(),
not_any_na()
Examples
# Prepare Data
data("USArrests")
# Check if any rows are not NA
not_all_na(USArrests$Murder)
#> [1] TRUE
