drop_obs_with_na {explore}R Documentation

Drop all observations with NA-values

Description

Drop all observations with NA-values

Usage

drop_obs_with_na(data)

Arguments

data

Data frame

Value

Data frame

Examples

data <- data.frame(a = 1:10, b = rep("A",10))
data[1,1] <- NA
drop_obs_with_na(data)

[Package explore version 1.3.0 Index]