gpt4 book ai didi

python - to_latex 中的 header

转载 作者:行者123 更新时间:2023-12-01 04:21:14 25 4
gpt4 key购买 nike

假设我有一个数据帧潜力,其能量取决于角度:

121.7352                         -3686.7807696787
105 -3686.6995320774
110 -3686.7274964541
115 -3686.6904245431
120 -3686.7741522700
125 -3686.7919721470
130 -3686.8060341619
135 -3686.8165389535

列标题为['angle', 'energy']

现在我想将其导出到 LaTeX 表:

potential.to_latex('potential.tex', index = False)

如何在导出的表格中获取列标题,例如:

['Angle in $^\\circ$', 'Energy in kJ / mole']

请注意,我知道我可以在导出之前重命名潜在数据帧的列,然后再将它们重命名回来。但如果没有必要,我不想这样做。

最佳答案

pandas 接受包含列别名的可选 header 参数:

aliases = ['Angle in $^\\circ$', 'Energy in kJ / mole']
potential.to_latex('potential.tex', index=False,
header=aliases)

对于 to_string 方法也是如此。

关于python - to_latex 中的 header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33672810/

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