I am on a code in python and I would like to transform this dataFrame :
Before:
Into this DataFrame :
I tried to pivot the table with the command :
pd.pivot_table(mytable, index = [JAN, FEB, MAR])
But I am not satisfied by the result...
I am on a code in python and I would like to transform this dataFrame :
Before:
Into this DataFrame :
I tried to pivot the table with the command :
pd.pivot_table(mytable, index = [JAN, FEB, MAR])
But I am not satisfied by the result...