R/nmissing.R

#' Returns the number of missing values in a vector
#' @description Given a vector the function calculates the number of missing values
#' @param x vector

nmissing <- function(x) sum(is.na(x))
mssm-msf-2019/BiostatsALL documentation built on May 22, 2019, 12:16 p.m.