πŸ“„ 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.