R/uniqueNonNA.R
uniqueNonNA.Rd
Make a vector free of NA and unique
uniqueNonNA(x)
A vector
A unique vector without NA
testVec <- c(3,4,5,NA,3,5) uniqueNonNA(testVec) #> [1] 3 4 5