Remove all NA values for a vector
remove_na(x)
vector
vector with all NA values removed
remove_na(c(2, NA, 3, NaN))#> [1] 2 3