How do I keep duplicates but remove unique values based on column in R
问题 How can I keep my duplicates, but remove unique values based on one column(qol)? ID qol Sat A 7 6 A 7 5 B 3 3 B 3 4 B 1 7 C 2 7 c 1 2 But I need this: ID qol Sat A 7 6 A 7 5 B 3 3 B 3 4 What can I do? 回答1: dplyr solution: library(dplyr) ID <- c("A", "A", "B", "B", "B", "C", "c") qol <- c(7,7,3,3,1,2,1) Sat <- c(6,5,3,4,7,7,2) test_df <- data.frame(cbind(ID, qol, Sat)) filtered_df <- test_df %>% group_by(qol) %>% filter(n()>1) Please note that this will return ID qol Sat 1 A 7 6 2 A 7 5 3 B 3