1
0
mirror of https://github.com/alecthomas/chroma.git synced 2025-02-21 19:06:18 +02:00
2019-07-15 20:40:04 +10:00

8 lines
145 B
Plaintext

items %>%
group_by(id) %>%
filter(n() > 2) %>%
mutate(count = n()) %>%
ungroup() %>%
distinct(id, .keep_all = TRUE)
write_csv("items.csv")