I have a dataset and I am using reset_index to reset the index:
output = output.reset_index(drop=True)
This works properly but I end up with an index column with no label. In other words all of the other columns have labels set, except the first column in the spreadsheet. I would like that index column to have the label "Index".
Thanks!