Transpose Process
This example shows the usage of Transpose process
| Peter | David | John | 
|---|---|---|
| 5,000 | 3,000 | 4,000 | 
->pipe(new Transpose())
| c0 | c1 | 
|---|---|
| Peter | 5000 | 
| David | 3000 | 
| John | 4000 | 
This example shows the usage of Transpose process
| Peter | David | John | 
|---|---|---|
| 5,000 | 3,000 | 4,000 | 
->pipe(new Transpose())
| c0 | c1 | 
|---|---|
| Peter | 5000 | 
| David | 3000 | 
| John | 4000 |