Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

pandas to_latex() methode seems to be a convenient way to convert bigger tabulars into into latex code. However, writing math mode, the $ seems to get escaped.

An example:

import pandas as pd
import numpy as np

table=np.asarray([['$x^2$',3]])
df=pd.DataFrame(table[:,1], columns=['value'], index=table[:,0])
print(df.to_latex(encoding='utf-8'))

output:

egin{tabular}{ll}
oprule
{} & value \
midrule
$xextasciicircum2$ &     3 \
ottomrule
end{tabular}

Is there a way to prevent this from happening?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.2k views
Welcome To Ask or Share your Answers For Others

1 Answer

Yes, the method's escape parameter is set to True by default. You can change it to False:

print(df.to_latex(encoding='utf-8', escape=False))

egin{tabular}{ll}
oprule
{} & value \
midrule
$x^2$ &     3 \
ottomrule
end{tabular}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...