Description Usage Arguments Details Value Author(s) See Also Examples
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()
.
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 | colAnyMissings(x, rows = NULL, cols = NULL, ...)
rowAnyMissings(x, rows = NULL, cols = NULL, ...)
## S4 method for signature 'DelayedMatrix'
colAnyMissings(
x,
rows = NULL,
cols = NULL,
force_block_processing = FALSE,
...
)
## S4 method for signature 'DelayedMatrix'
colAnyNAs(x, rows = NULL, cols = NULL, force_block_processing = FALSE, ...)
## S4 method for signature 'DelayedMatrix'
rowAnyMissings(
x,
rows = NULL,
cols = NULL,
force_block_processing = FALSE,
...
)
## S4 method for signature 'DelayedMatrix'
rowAnyNAs(x, rows = NULL, cols = NULL, force_block_processing = FALSE, ...)
|
x |
A NxK DelayedMatrix. |
rows |
A |
cols |
A |
... |
Additional arguments passed to specific methods. |
force_block_processing |
|
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.
Returns TRUE
if a missing value was
detected, otherwise FALSE
.
Peter Hickey
Peter Hickey
Starting with R v3.1.0, there is anyNA()
in the base,
which provides the same functionality as anyMissing()
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # A DelayedMatrix with a 'matrix' seed
dm_matrix <- DelayedArray(matrix(c(rep(1L, 5),
as.integer((0:4) ^ 2),
seq(-5L, -1L, 1L)),
ncol = 3))
# A DelayedMatrix with a 'HDF5ArraySeed' seed
# NOTE: Requires that the HDF5Array package is installed
library(HDF5Array)
dm_HDF5 <- writeHDF5Array(matrix(c(rep(1L, 5),
as.integer((0:4) ^ 2),
seq(-5L, -1L, 1L)),
ncol = 3))
dm_matrix[dm_matrix > 3] <- NA
colAnyNAs(dm_matrix)
dm_HDF5[dm_HDF5 > 3] <- NA
rowAnyNAs(dm_HDF5)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.