I have a simple dataframe like this;
I want to drop only the rows where the values in columns "c2", "c3" ,"c4" are missing.
Tried using 'complete.cases' but it removes the rows based on "OR" logic. What i want to do is the AND logic. That is, remove the row only if C2 AND C3 AND C4 are missing.
Any help on this would be highly appreciated.