I have that in samples 1 the x,y and z values are respectively 100, 200 and 300.
| A | B | C |
|---|---|---|
| 1 | x | 100 |
| 1 | y | 200 |
| 1 | z | 300 |
How can I transpose the table making as a column names the values x, y and z? Keeping ordered the values for each samples of column C? I would like to achieve something like this:
| A | x | y | z |
|---|---|---|---|
| 1 | 100 | 200 | 300 |
Thanks!