powered by
Check if any rows for a column are not NA.
NA
not_all_na(x)
TRUE or FALSE
TRUE
FALSE
vector or column
Determine whether any rows for a column (or vector) are not missing (NA).
Other dataEvaluations: dropColsWithAllNA(), dropRowsWithAllNA(), is.nan.data.frame(), not_any_na()
dropColsWithAllNA()
dropRowsWithAllNA()
is.nan.data.frame()
not_any_na()
# Prepare Data data("USArrests") # Check if any rows are not NA not_all_na(USArrests$Murder)
Run the code above in your browser using DataLab