has.missings.data.frame: Check presence of missings check presence of missings in a...

View source: R/exploratools.R

has.missings.data.frameR Documentation

Check presence of missings check presence of missings in a data.frame

Description

Check presence of missings check presence of missings in a data.frame

Usage

## S3 method for class 'data.frame'
has.missings(x, mc = NULL, ...)

Arguments

x

data, of class data.frame

mc

not used

...

not used

Value

A single true/false response about the presence of any missing value on the whole data set

Examples

library(compositions)
data(Windarling)
has.missings(Windarling)
head(Windarling)
Windarling[1,1] = NA
head(Windarling)
has.missings(Windarling)

gmGeostats documentation built on April 18, 2023, 5:08 p.m.