I successfully merged two data sets and am now trying to remove all rows with an 'NA' value for the 'Provider_name' column in R. I have tried the below commands but neither of them are deleting the rows, at all, when I write.table to csv file. R does not return any error messages. What am I missing?
APSIVMerged[!is.na(APSIVMerged$Provider_Name),]
APSIVMerged %>% drop_na(Provider_Name