Con la ayuda del DataFrame.to_latex()
método, podemos obtener el marco de datos en forma de documento de látex que podemos abrir como un archivo separado usando el DataFrame.to_latex()
método.
Sintaxis:
DataFrame.to_latex()
Retorno: Devuelve el marco de datos como un documento de látex.
Ejemplo n.º 1:
en este ejemplo, podemos decir que al usar DataFrame.to_latex()
el método, podemos obtener el marco de datos en el documento de formulario de látex.
# import DataFrame import pandas as pd # using DataFrame.to_latex() method gfg = pd.DataFrame({'Name': ['Marks'], 'Jitender': ['78'], 'Rahul': ['77.9']}) print(gfg.to_latex(index = True, multirow = True))
Producción :
\begin{tabular}{llll}
\toprule
{} & Nombre & Jitender & Rahul \\
\midrule
0 & Marks & 78 & 77.9 \\
\bottomrule
\end{tabular}
Ejemplo #2:
# import DataFrame import pandas as pd # using DataFrame.to_latex() method gfg = pd.DataFrame({'Name': ['Marks', 'Gender'], 'Jitender': ['78', 'Male'], 'Purnima': ['78.9', 'Female']}) print(gfg.to_latex(index = False, multirow = True))
Producción :
\begin{tabular}{lll}
\toprule
Nombre & Jitender & Purnima \\
\midrule
Marcas & 78 & 78.9 \\
Género & Masculino & Femenino \\
\bottomrule
\end{tabular}
Publicación traducida automáticamente
Artículo escrito por Jitender_1998 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA