Code: Select all
import pandas as pd
df = pd.DataFrame(
dict(name=['Raphael', 'Donatello'],
mask=['red', 'purple'],
weapon=['sai', 'bo staff']
)
)
print(df.style.hide(axis="index").applymap_index(lambda v: "font-weight: bold;", axis="columns").to_latex(convert_css=True))
Code: Select all
\begin{tabular}{lll}
\bfseries name & \bfseries mask & weapon \\
Raphael & red & sai \\
Donatello & purple & bo staff \\
\end{tabular}
Wenn ich den Index nicht ausgeblendet habe mit:
Code: Select all
print(df.style.applymap_index(lambda v: "font-weight: bold;", axis="columns").to_latex(convert_css=True))
Code: Select all
\begin{tabular}{llll}
& \bfseries name & \bfseries mask & \bfseries weapon \\
0 & Raphael & red & sai \\
1 & Donatello & purple & bo staff \\
\end{tabular}
Dies scheint ein Fehler von Pandas zu sein, und ich habe ein Problem angesprochen.
Gibt es also eine Lösung, bevor der Fehler behoben ist?
Mobile version