gpt4 book ai didi

python - 在 IPython Notebook 的 Pandas DataFrame 单元格中包含 HTML?

转载 作者:太空宇宙 更新时间:2023-11-03 11:30:18 25 4
gpt4 key购买 nike

如何将 HTML 包含在 IPython 笔记本中由 DataFrame 生成的表格中?

例如,我希望能够执行如下操作:

pd.DataFrame({
"text": ["Hello <strong>world</strong>"],
})

生成类似这样的表格:

<table>
<tr><th></th><th>text</th></tr>
<tr><th>0</th><td>Hello <strong>world</strong></tr>
</table>

最佳答案

您尝试过 pandas.DataFrame.to_html 参见 here获取更多信息。有关使用 IPython Notebook 显示 html、svg、图像等的精彩示例,请参阅 here

在 IPython Notebook 上像这样工作;

from IPython.display import HTML
data = pd.DataFrame({'A':[1,2,3,4,5],'B':[6,7,8,9,10]})
h = HTML(data.to_html());h

关于python - 在 IPython Notebook 的 Pandas DataFrame 单元格中包含 HTML?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22139649/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com