remove_duplicates_and_na.Rd
This function removes duplicate values and NA values from the input.
It first removes NA values from the input using the na.omit
function from the stats
package.
Then it removes duplicate values from the result using the unique
function.
remove_duplicates_and_na(input)
A vector or data frame.
A vector or data frame with duplicate values and NA values removed.