mirror of
https://github.com/alecthomas/chroma.git
synced 2025-02-21 19:06:18 +02:00
8 lines
145 B
Plaintext
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")
|