not_all_na: Any Rows Not NA.

View source: R/anyRowsNA.R

not_all_naR 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)

petersenlab documentation built on April 4, 2025, 12:22 a.m.