The dataframes in Pandas contain column name and row name.How can I stop outputting the row name? I have found method called itertuples where you can set the index to False but that does not seem to work.
The input is a csv file and the output is a xlsx file with sheets. Each sheet contains row numbers right now but those need to disappear.
See comments for answer. This worked for me:
PandasDataFrame.to_excel(PandasWriter, sheet_name='Source', index=False)