I have two requirements
- find all duplicate values in single column
- find all unique rows [opposite to first question] This should not include even single pair from duplicated rows
I'm Learning since last 2 weeks. Watching YouTube videos, Referring Stackoverflow and other websites, so not much. Please do refer if any material or courses.
so answer to my first question i found here (Find duplicated elements with dplyr)
# All duplicated elements
mtcars %>%
filter(carb %in% unique(.[["carb"]][duplicated(.[["carb"]])]))
So i want opposite of this
Thanks
P.S. I have non technical background. I went through couple of questions and answers here, so i might have found the answer or needed some of tweaks and i totally ignored that