Reputation: 1439
I have a dataframe and in a particular column I want to find the index of all NA values. How can I do it?
Upvotes: 8
Views: 4656
Reputation: 52637
which(is.na(my.df$col.I.care.about))
Upvotes: 15