| colAnyNAs,xgCMatrix-method {sparseMatrixStats} | R Documentation |
Check if any elements in a row (column) of a matrix-like object is missing.
## S4 method for signature 'xgCMatrix' colAnyNAs(x, rows = NULL, cols = NULL) ## S4 method for signature 'xgCMatrix' rowAnyNAs(x, rows = NULL, cols = NULL)
x |
An NxK matrix-like object. |
rows |
A |
cols |
A |
The S4 methods for x of type matrix,
array, or numeric call
matrixStats::rowAnyNAs
/ matrixStats::colAnyNAs.
Returns a logical vector of length N (K).
matrixStats::rowAnyNAs() and
matrixStats::colAnyNAs() which are
used when the input is a matrix or numeric vector.
For checks if any element is equal to a value, see
rowAnys().
mat <- matrix(0, nrow=10, ncol=5) mat[sample(seq_len(5 *10), 5)] <- NA sp_mat <- as(mat, "dgCMatrix") colAnyNAs(sp_mat)