Learn R Programming

petersenlab (version 1.1.0)

not_all_na: Any Rows Not NA.

Description

Check if any rows for a column are not NA.

Usage

not_all_na(x)

Value

TRUE or FALSE

Arguments

x

vector or column

Details

Determine whether any rows for a column (or vector) are not missing (NA).

See Also

Other dataEvaluations: dropColsWithAllNA(), dropRowsWithAllNA(), is.nan.data.frame(), not_any_na()

Examples

Run this code
# 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