根据R中的唯一ID选择唯一日期

时间:2018-01-16 01:42:19

标签: r date unique distinct

我的数据有两列:

id <-c(1, 2, 2, 3, 3, 3, 3)
dates <-c("1/1/2001", "2/1/2001", "2/1/2001", "3/1/2001", "4/1/2001", "4/1/2001", "5/1/2001")
example<-data.frame(id, dates)

我想找到唯一/不同的ID,然后在日期列中找到该ID的所有唯一日期。在示例中,我将拥有3个唯一ID,并为每个id提供不同数量的唯一日期。

0 个答案:

没有答案