π TransposeΒΆ
augmentors.table.transpose
type: TransposeTable
[source]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.