I am trying to copy values from one column to another using the following:
df1999['H31C'] = df1999['H31B']
However I am getting this value error:
ValueError: Wrong number of items passed 2, placement implies 1
Any idea why this is happening?
I am trying to copy values from one column to another using the following:
df1999['H31C'] = df1999['H31B']
However I am getting this value error:
ValueError: Wrong number of items passed 2, placement implies 1
Any idea why this is happening?