In R könnten Sie
tunlibrary(dplyr)
df %>%
group_by(Col1) %>%
filter(all(vc %in% Col2))
# Col1 Col2
# <int> <fct>
#1 1 ABC
#2 1 DEF
Das Basis-R-Äquivalent dazu wäre
df[as.logical(with(df, ave(Col2, Col1, FUN = function(x) all(vc %in% x)))), ]
# Col1 Col2
#1 1 ABC
#4 1 DEF
Wir wählen die Gruppen aus, die alle aus vc
bestehen in ihnen.