vastorbit.core.tablesample.base.TableSample.transpose¶
- TableSample.transpose() TableSample¶
Transposes the
TableSample.- Returns:
transposed
TableSample.- Return type:
Examples
Let’s import the
TableSampleobject:from vastorbit import TableSample
Let’s build an example object.
# dict with all the data. d = { "customer_ID": [0, 1, 2, 3], "age": [40, 30, 22, 55], "name": ['Roger', 'Maria', 'Alisia', 'Costi'], } # creating the object. tb = TableSample(d)
customer_ID age name 1 0 40 Roger 2 1 30 Maria 3 2 22 Alisia 4 3 55 Costi Rows: 1-4 | Columns: 3Let’s use the function.
tb.transpose()
customer_ID 0 1 2 3 1 age 40 30 22 55 2 name Roger Maria Alisia Costi Rows: 1-2 | Columns: 5Warning
This will modify the main object, and the input
TableSamplewill be appended to it.See also