我有两列数据。第一列中的一些数据重复(它们代表问题)。第二列中的数据是唯一的(它们代表同一问题的多个答案)。
我需要为第一列中的每个唯一值合并第二列中的所有数据。例如:
Q,A
1,yes.
1,is possible.
2,no.
2,not possible.
2,cannot do this.
2,impossible.
3,maybe.
合并到:
Q,A
1,yes.is possible.
2,no.not possible.cannot do this.impossible.
3,maybe.