rm_na.Rd
remove NA from a vector and return it
rm_na(vec)
A vector
A vector without NA
rm_na(c(1,NA, 2, NA))#> [1] 1 2