I have a list of dataframes, each has a multi-index. one column is a varName, the other is 'round'.
The values in the varName column are numbers. I have another dataframe that is a mapping of the numbers to labels. I want to use map() on the varName column, but since it's part of the index, there IS no varName column.
I've tried to copy the varname column, or make it not part of the index anymore, but none of these things seem to work.