gpt4 book ai didi

python - 在 python 中创建出版质量表

转载 作者:太空狗 更新时间:2023-10-30 00:07:34 25 4
gpt4 key购买 nike

我想使用 python 创建出版质量表以输出为 svg 或 jpg 或 png 图像。

我熟悉生成漂亮文本表的 texttable 模块,但是如果我有例如

data = [['Head 1','Head 2','Head 3'],['样本集类型 1',12.8,True],['样本集类型 2',15.7,False ]]

我想制作一些看起来像的东西

table image

有没有我可以求助的模块,或者你能告诉我一个过程吗?

最佳答案

你有很多可能性。

您可以根据 https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.to_latex.html 将 Pandas 数据框转换为 Latex

您还可以使用 Tabular 根据 http://en.wikibooks.org/wiki/LaTeX/Tables 输出 latex 源

您可以根据 Python reportlab inserting image into table 使用 ReportLab

您也可以只编写一个 HTML 表格文件并使用 css 设置样式。

with open("example.html", "w") as of:
of.write("<html><table>")
for index, row in enumerate(data):
if index == 0:
of.write("<th>")
else:
of.write("<tr>")

for cell in row:
of.write("<td>" + cell + "</td>")
if index == 0:
of.write("</th>")
else:
of.write("</tr>")

of.write("</table></html>")

您可以使用 Latex 表格作为输出来做类似的事情。

关于python - 在 python 中创建出版质量表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18710178/

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