I'm copying data from one column to another (along the same row) in a pandas DataFrame and instead of displaying the data, the cell reads 'Ellipsis'. It does not even use ellipsis as a punctuation i.e '...', it just says 'Ellipsis'. I tried increasing the column width but that didn't help. How do I get the cell to display the data that I copied? This is the code I've been using:
data['Upper Body'][data['Lower Body Color'].str.startswith('upperBody')] = data['Lower Body Color'][data['Lower Body Color'].str.startswith('upperBody')]