I have this dataframe:
| University id # | Year | fin_element | prior_year | current_year |
|---|---|---|---|---|
| 1 | 2022 | element #1 | $1 | $2 |
| 1 | 2022 | element #2 | $3 | $5 |
| 1 | 2022 | element #3 | $2 | $0 |
And I want to convert it to the following using pandas:
| University id # | Year | financial_period | element #1 | element #2 | element #3 |
|---|---|---|---|---|---|
| 1 | 2022 | prior_year | $1 | $3 | $2 |
| 1 | 2022 | current_year | $2 | $5 | $0 |
While keeping columns University # and Year the same, I want the values in column fin_element to become the column headers in the new table, and the column headers to become values in a column called financial_period.
How can I do this? I have read into pivot, stack and melt, and am a bit overwhelmed since I am new to python and pandas.