πŸ“„ Shuffle ColsΒΆ

augmentors.table.shuffle_cols

Explanation about ShuffleTableColumnsΒΆ

Shuffles the table columns randomly.

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

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

Read more about catalog usage here.