R/is.na2.R

#' function for pheatmap
#' @description function for pheatmap
#' @export

is.na2 = function(x){
  if(is.list(x) | length(x) > 1){
    return(FALSE)
  }
  if(length(x) == 0){
    return(TRUE)
  }

  return(is.na(x))
}
mssm-msf-2019/BiostatsALL documentation built on May 22, 2019, 12:16 p.m.