πŸ“„ TransposeΒΆ

augmentors.table.transpose

Explanation about TransposeTableΒΆ

Transpose a table.

Sample Input:
    {
        "header": ["name", "age", "sex"],
        "rows": [["Alice", 26, "F"], ["Raj", 34, "M"], ["Donald", 39, "M"]],
    }

Sample Output:
    {
        "header": [" ", "0", "1", "2"],
        "rows": [["name", "Alice", "Raj", "Donald"], ["age", 26, 34, 39], ["sex", "F", "M", "M"]],
    }

Read more about catalog usage here.