R/count_NAs.R

Defines functions count_NAs

Documented in count_NAs

#' Calculate the number of NAs in an object
#'
#' Calculate the number of NAs in an object. Can be useful for determining the sparseness of matrices and data frames, or their component rows or columns.
#' @param x object to be tested for NAs. Can be a data.frame, matrix, vector, list. For lists, it looks at the list elements themselves, not within those elements. For other object types, results may not be as expected.
#' @export
#' @return integer, the number of NAs in \code{x}
#' @usage count_NAs(x)
count_NAs <- function(x) sum(is.na(x))
mjdufort/miscHelpers documentation built on Feb. 4, 2024, 7:44 p.m.