将pandas'to_html'保存为文件

时间:2013-02-15 15:23:23

标签: python pandas

我有一个DateFrame'tsod',现在我把它转换为html:

tsod.to_html()

如何将其另存为文件?最好保存为'.html'文件。

3 个答案:

答案 0 :(得分:8)

with open('my_file.html', 'w') as fo:
    fo.write(tsod.to_html())

或者使用pandas

tsod.to_html(open('my_file.html', 'w'))

或再次(感谢@ andy-hayden)

with open('my_file.html', 'w') as fo:
    tsod.to_html(fo)

答案 1 :(得分:2)

截至当前版本的pandas tsod.to_html('out.html')工作正常。

答案 2 :(得分:0)

a=tsod.to_html()
save(a,'path')

将起作用