I have a dataframe that i read using pd.ExcelFile()
Iam doing like :
xl = pd.ExcelFile('input.xlsx')
df = pd.parse()
latexFormat = df.to_latex()
Now i write latexFormat
to a .tex file, by simply opening a file in write mode and then doing fid.write(latexFormat)
But it also includes indexes.
How do i remove indexes when writing it to tex file (or) i need to make changes to dataFrame before using to_latex()