我想在Excel中打印出一個數據框。我使用ExcelWriter如下:將數據框寫入excel以標題
writer = pd.ExcelWriter('test.xlsx')
df = DataFrame(C,ind) # C is the matrix and ind is the list of corresponding indices
df.to_excel(writer, startcol = 0, startrow = 5)
writer.save()
這會產生什麼,我需要,但除此之外,我想在桌子上(startcol=0
,startrow=0
)的頂部添加標題一些文字(解釋)的數據。
如何使用ExcelWriter添加字符串標題?
感謝百萬法比奧。我試圖使用write_string,但得到了一些錯誤的錯誤實現。現在它完美地工作。 – Hamed