remove_na_rows: Remove Rows that has NAs

View source: R/na_helper.R

remove_na_rowsR Documentation

Remove Rows that has NAs

Description

Remove rows that has any NA values

Usage

remove_na_rows(df)

Arguments

df

A data.frame

Value

A data.frame with complete cases

Examples


df <- data.frame(x = c(1, 2, NA),
                 y = c(1, NA, 3))
remove_na_rows(df)

Lightbridge-KS/lbx documentation built on Dec. 4, 2024, 2:53 a.m.