πŸ“„ Shuffle RowsΒΆ

augmentors.table.shuffle_rows

Explanation about ShuffleTableRowsΒΆ

Shuffles the input table rows randomly.

Sample Input:
{
    "header": ["name", "age"],
    "rows": [["Alex", 26], ["Raj", 34], ["Donald", 39]],
}

Sample Output:
{
    "header": ["name", "age"],
    "rows": [["Donald", 39], ["Raj", 34], ["Alex", 26]],
}

Read more about catalog usage here.