has.missings.data.frame {gmGeostats} | R 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)
[Package gmGeostats version 0.11.3 Index]