There is a similar question for PHP, but I\'m working with R and am unable to translate the solution to my problem.
I have this data frame with 10 rows and 50 column
A possibility involving dplyr could be:
dplyr
df %>% group_by_all() %>% filter(n() == 1)
Or:
df %>% group_by_all() %>% filter(!any(row_number() > 1))