anyMissing: 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.
Please use base::anyNA() instead of anyMissing(),
colAnyNAs() instead of colAnyMissings(), and
rowAnyNAs() instead of rowAnyMissings().
A vector indicating subset of elements to
operate over. If NULL, no subsetting is done.
...
Not used.
rows
A vector indicating subset of rows to
operate over. If NULL, no subsetting is done.
cols
A vector indicating subset of columns to
operate over. If NULL, no subsetting is done.
useNames
If NA, the default behavior of the
function about naming support is remained. If FALSE,
no naming support is done. Else if TRUE, names
attributes of result are set.
Value
Returns TRUE if a missing value was
detected, otherwise FALSE.
Details
The implementation of this method is optimized for both speed and memory.
The method will return TRUE as soon as a missing
value is detected.
See Also
Starting with R v3.1.0, there is anyNA() in the base,
which provides the same functionality as anyMissing().