从 pandas DataFrame 导出 LaTeX 表 [英] Export a LaTeX table from pandas DataFrame

查看:30
本文介绍了从 pandas DataFrame 导出 LaTeX 表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Is there an easy way to export a data frame (or even a part of it) to LaTeX?

I searched in google and was only able to find solutions using asciitables.

解决方案

DataFrames have a to_latex (see the pandas docs) method:

>>> df = pd.DataFrame(np.random.random((5, 5)))
>>> df  
          0         1         2         3         4
0  0.886864  0.518538  0.359964  0.167291  0.940414
1  0.834130  0.022920  0.265131  0.059002  0.530584
2  0.648019  0.953043  0.263551  0.595798  0.153969
3  0.207003  0.015721  0.931170  0.045044  0.432870
4  0.039886  0.898780  0.728195  0.112069  0.468485

>>> print(df.to_latex())
egin{tabular}{|l|c|c|c|c|c|c|}
hline
{} &         0 &         1 &         2 &         3 &         4 \
hline
0 &  0.886864 &  0.518538 &  0.359964 &  0.167291 &  0.940414 \
1 &  0.834130 &  0.022920 &  0.265131 &  0.059002 &  0.530584 \
2 &  0.648019 &  0.953043 &  0.263551 &  0.595798 &  0.153969 \
3 &  0.207003 &  0.015721 &  0.931170 &  0.045044 &  0.432870 \
4 &  0.039886 &  0.898780 &  0.728195 &  0.112069 &  0.468485 \
hline
end{tabular}

You can simply write this to a tex file.

By default latex will render this as:

Note: the to_latex (see the pandas docs) method offers several configuration options.

这篇关于从 pandas DataFrame 导出 LaTeX 表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆