【发布时间】:2012-07-07 01:51:07
【问题描述】:
我在 R 中有我的数据表。我想合并具有相同 customerID 的行,然后连接其他合并列的元素。
我想从这里开始:
title author customerID
1 title1 author1 1
2 title2 author2 2
3 title3 author3 1
到这里:
title author Group.1
1 title1, title3 author1, author3 1
2 title2 author2 2
【问题讨论】:
标签: r merge concatenation