Sometimes, when reading a CSV in pandas, you will get a Unnamed:0 column. To fix this, add index_col=0 to pandas.read_csv.
Unnamed:0
index_col=0
pandas.read_csv
My previous tips on pandas.