次のようなデータセットがあります。
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
「バッチ」と呼ばれる新しい変数で、それらが含まれる「バッチ」に基づく「ファイル」のグループを作成することにより、完全なデータセット(12個の「バッチ」カテゴリがある)をループしたいと思います。
すなわち
batch[1]
filepath1.txt
filepath2.txt
filepath3.txt
filepath4.txt
batch[2]
filepath5.txt
filepath6.txt
filepath7.txt
filepath8.txt
完全なデータセット内のすべてのバッチグループに対してこれを行うにはどうすればよいですか?