All, I have produced some summary statistic from a raw csv file. I have also saved this a summary in to a excel. I now need to make this report look pretty by formatting. I am aware of applying CSS style to data frame , but unable to export these formatting to excel. Alternatively , i have tried to use formatting feature in xlsxwriter to varying degree of success. Is there a way to format this dataframe once i have exported?
out.to_excel(writer, sheet_name='Dist-Market',startrow = 3 , startcol = 3)
def frmt_tbl(ws,rng):
ws.set_column(rng, 30)
