not_all_na {petersenlab} | R Documentation |
Any Rows Not NA.
Description
Check if any rows for a column are not NA
.
Usage
not_all_na(x)
Arguments
x |
vector or column |
Details
Determine whether any rows for a column (or vector) are not missing
(NA
).
Value
TRUE
or FALSE
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)
[Package petersenlab version 1.0.0 Index]