complete.data: Complete data

View source: R/complete.data.R

complete.dataR Documentation

Complete data

Description

Removing rows with NA in dataframe or matrix. Removing NA atomic.

Usage

complete.data(x)

Arguments

x

dataframe or matrix or atomic

Value

complete data

Examples

x=c(1,NA,2)
complete.data(x)

x=data.frame(a=c(1,NA))
complete.data(x)

do documentation built on Sept. 12, 2024, 6:27 a.m.