R/remove.na.R

Defines functions remove.na

Documented in remove.na

##'  helper function 
##'
##' remove NAs 
##' @param x anything really 
##' @return part of x 
##' @export 
##' @author Yi Tang
remove.na <-
    function(x) {
        x[!(is.na(x))]
    }
yitang/RExercise documentation built on May 4, 2019, 5:28 p.m.