1
pandas
hereで生成されたテーブルをPDFにエクスポートする方法がわかりました。これをpngファイルに変換する方法については興味がありません。私は本当にそれはかなりハードエラーを補正することができる最初の場所で、コードを理解していないよpandasテーブルをpdfとしてエクスポート
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-10-9818a71c26bb> in <module>()
13
14 with open(filename, 'wb') as f:
---> 15 f.write(template.format(z.to_latex()))
16
17 subprocess.call(['pdflatex', filename])
TypeError: a bytes-like object is required, not 'str'
:
問題は、私は次のエラーメッセージを取得すること、です。 z
はpandas
で生成DataFrame
ある
import subprocess
filename = 'out.tex'
pdffile = 'out.pdf'
template = r'''\documentclass[preview]{{standalone}}
\usepackage{{booktabs}}
\begin{{document}}
{}
\end{{document}}
'''
with open(filename, 'wb') as f:
f.write(template.format(z.to_latex()))
subprocess.call(['pdflatex', filename])
:私のコードは次のようになります。
誰かが助けてくれることを願っています。 ありがとうございました シトー。