I have a pandas DataFrame
and I would like to rename the columns based on another DataFrame
that I plan to use as dictionary.
For example, the first DataFrame
is:
AAA BBB CCC DDD
index
1 1 2 3 4
2 5 6 7 8
and the second DataFrame
that I would like to use as the dictionary:
val1 val2
index
1 AAA A7
2 BBB B0
3 CCC C3
4 DDD D1
What I would like to get as result is the following:
A7 B0 C3 D1
index
1 1 2 3 4
2 5 6 7 8
Initially I thought to reshape the first DataFrame
to long format, then merge with the dictionary DataFrame
and then reshape back to wide format. However I think this is quite inefficient, so I would like to use a more efficient way (if one exists). Thank you very much four your help.