R/count_NA.R

#' Count NA Function
#' 
#' This function returns a sum of the total number of NA values in a vector
#' @keywords missing
#' @export
#' @examples 
#' count.NA()

count.NA = function(x){ sum(is.na(x))}

#document()
npm27/domo documentation built on July 2, 2019, 11:09 p.m.