I have a df like this
| Feature | Channel | Value |
|---------|---------|-------|
| a | 0 | 1.3 |
| | 1 | 1.3 |
| | 2 | 1.3 |
| b | 0 | 1.2 |
| | 1 | 1.2 |
| | 2 | 1.2 |
where Feature and Channel are a multiindex
how can I turn this into the following:
| channel | a | b |
|---------|-----|-----|
| 0 | 1.3 | 1.2 |
| 1 | 1.3 | 1.2 |
| 2 | 1.3 | 1.2 |
where channel is now the index, and a and b are separate columns?