Transpose

The transpose operation swaps the rows and columns of your dataset, turning the dataset "sideways."

Example
Dataset:
A | B | C |
---|---|---|
1 | 2 | 3 |
4 | 5 | 6 |
Transpose the dataset:
- | - |
---|---|
1 | 4 |
2 | 5 |
3 | 6 |
Updated 5 months ago
The transpose operation swaps the rows and columns of your dataset, turning the dataset "sideways."
Example
Dataset:
A | B | C |
---|---|---|
1 | 2 | 3 |
4 | 5 | 6 |
Transpose the dataset:
- | - |
---|---|
1 | 4 |
2 | 5 |
3 | 6 |
Updated 5 months ago