8

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

tsod.to_html()

如何将其保存为文件?更好地保存为“.html”文件。

4

3 回答 3

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

或者使用熊猫

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

或再次(感谢@andy-hayden)

with open('my_file.html', 'w') as fo:
    tsod.to_html(fo)
于 2013-02-15T15:34:31.873 回答
3

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

于 2016-04-05T13:48:59.880 回答
0
a=tsod.to_html()
save(a,'path')

将工作

于 2013-02-15T15:55:00.527 回答