Python | Pandas DataFrame.to_latex() method (original) (raw)

Last Updated : 17 Sep, 2019

With the help of **DataFrame.to_latex()** method, We can get the dataframe in the form of latex document which we can open as a separate file by using DataFrame.to_latex() method.

Syntax : DataFrame.to_latex()
Return : Return the dataframe as a latex document.

Example #1 :
In this example we can say that by using DataFrame.to_latex() method, we are able to get the dataframe in the form latex document.

import pandas as pd

gfg = pd.DataFrame({ 'Name' : [ 'Marks' ],

`` 'Jitender' : [ '78' ],

`` 'Rahul' : [ '77.9' ]})

print (gfg.to_latex(index = True , multirow = True ))

Output :

\begin{tabular}{llll}
\toprule
{} & Name & Jitender & Rahul \\
\midrule
0 & Marks & 78 & 77.9 \\
\bottomrule
\end{tabular}

Example #2 :

import pandas as pd

gfg = pd.DataFrame({ 'Name' : [ 'Marks' , 'Gender' ],

`` 'Jitender' : [ '78' , 'Male' ],

`` 'Purnima' : [ '78.9' , 'Female' ]})

print (gfg.to_latex(index = False , multirow = True ))

Output :

\begin{tabular}{lll}
\toprule
Name & Jitender & Purnima \\
\midrule
Marks & 78 & 78.9 \\
Gender & Male & Female \\
\bottomrule
\end{tabular}

Similar Reads