aux_deleteNA_df: Removing NAs observations from a data frame

View source: R/aux_deleteNA_df.R

aux_deleteNA_dfR Documentation

Removing NAs observations from a data frame

Description

Internal, auxiliary functions

Usage

aux_deleteNA_df(data)

Arguments

data

is a data.frame object

Value

a data.frame object with the same structure as data and no observation with missing (NA) values

Examples

df=data.frame(x=c(rnorm(10),NA,NA),y=c(NA,NA,rnorm(10)))
SLEMI:::aux_deleteNA_df(df)

SLEMI documentation built on Nov. 20, 2023, 1:06 a.m.