Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

pandas to_latex() escapes mathmode

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:

\begin{tabular}{ll}
\toprule
{} & value \\
\midrule
\$x\textasciicircum2\$ &     3 \\
\bottomrule
\end{tabular}

Is there a way to prevent this from happening?

like image 679
Asking Questions Avatar asked May 30 '17 11:05

Asking Questions


1 Answers

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))

\begin{tabular}{ll}
\toprule
{} & value \\
\midrule
$x^2$ &     3 \\
\bottomrule
\end{tabular}
like image 138
ayhan Avatar answered Oct 13 '22 22:10

ayhan