1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
\name{anyMissing}
\alias{anyMissing}
\title{Checks if there are any missing values in an object or not}
\description{
Checks if there are any missing values in an object or not.
}
\usage{anyMissing(x=NULL)}
\arguments{
\item{x}{A \code{\link[base]{vector}}.}
}
\value{
Returns \code{\link[base:logical]{TRUE}} if a missing value was detected, otherwise \code{\link[base:logical]{FALSE}}.
}
\details{
The implementation of this method is optimized for both speed and memory.
}
\author{Henrik Bengtsson (\url{http://www.braju.com/R/})}
\examples{
x <- rnorm(n=1000)
x[seq(300,length(x),by=100)] <- NA
stopifnot(anyMissing(x) == any(is.na(x)))
}
\keyword{iteration}
\keyword{logic}
|