我有一个看起来像这样的数据集:
Files Batch
filepath1.txt One
filepath2.txt One
filepath3.txt One
filepath4.txt One
filepath5.txt two
filepath6.txt two
filepath7.txt two
filepath8.txt two
我想通过在一个名为“batch”的新变量中创建基于它们所在的“Batch”的“文件”组来遍历整个数据集(有十几个“Batch”类别)
IE
batch[1]
filepath1.txt
filepath2.txt
filepath3.txt
filepath4.txt
batch[2]
filepath5.txt
filepath6.txt
filepath7.txt
filepath8.txt
如何为完整数据集中的所有批次组执行此操作?