Skip to content

Fix Bug: last column missing formatting in Latex (#52218) #60356

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Nov 21, 2024
2 changes: 2 additions & 0 deletions doc/source/whatsnew/v2.3.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ Performance improvements
Bug fixes
~~~~~~~~~

- The ``to_latex`` styling of column headers when combined with a hidden index or hidden index-levels is fixed.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you move this to v3.0.0.rst?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated!


Categorical
^^^^^^^^^^^
-
Expand Down
4 changes: 3 additions & 1 deletion pandas/io/formats/style_render.py
Original file line number Diff line number Diff line change
Expand Up @@ -868,7 +868,9 @@ def _translate_latex(self, d: dict, clines: str | None) -> None:
or multirow sparsification (so that \multirow and \multicol work correctly).
"""
index_levels = self.index.nlevels
visible_index_level_n = index_levels - sum(self.hide_index_)
# d["head"] will contain at least one column relating to the index,
# it will be marked as `is_visible`: False if all levels are hidden
visible_index_level_n = max(1, index_levels - sum(self.hide_index_))
d["head"] = [
[
{**col, "cellstyle": self.ctx_columns[r, c - visible_index_level_n]}
Expand Down
85 changes: 85 additions & 0 deletions pandas/tests/io/formats/test_to_latex.py
Original file line number Diff line number Diff line change
Expand Up @@ -1405,3 +1405,88 @@ def test_to_latex_multiindex_multirow(self):
"""
)
assert result == expected

def test_to_latex_multiindex_format_single_index_hidden(self):
# GH 52218
df = DataFrame(
{
"A": [1, 2],
"B": [4, 5],
}
)
result = (
df.style.hide(axis="index")
.map_index(lambda v: "textbf:--rwrap;", axis="columns")
.to_latex()
)
expected = _dedent(r"""
\begin{tabular}{rr}
\textbf{A} & \textbf{B} \\
1 & 4 \\
2 & 5 \\
\end{tabular}
""")
assert result == expected

def test_to_latex_multiindex_format_triple_index_two_hidden(self):
# GH 52218
arrays = [
["A", "A", "B", "B"],
["one", "two", "one", "two"],
["x", "x", "y", "y"],
]
index = pd.MultiIndex.from_arrays(
arrays, names=["Level 0", "Level 1", "Level 2"]
)
df = DataFrame(
[[0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0]],
index=index,
columns=["C1", "C2", "C3"],
)
result = (
df.style.hide(axis="index", level=[0, 1])
.map_index(lambda v: "textbf:--rwrap;", axis="columns")
.to_latex()
)
expected = _dedent(r"""
\begin{tabular}{lrrr}
& \textbf{C1} & \textbf{C2} & \textbf{C3} \\
Level 2 & & & \\
x & 0 & 0 & 0 \\
x & 0 & 0 & 0 \\
y & 0 & 0 & 0 \\
y & 0 & 0 & 0 \\
\end{tabular}
""")
assert result == expected

def test_to_latex_multiindex_format_triple_index_all_hidden(self):
# GH 52218
arrays = [
["A", "A", "B", "B"],
["one", "two", "one", "two"],
["x", "x", "y", "y"],
]
index = pd.MultiIndex.from_arrays(
arrays, names=["Level 0", "Level 1", "Level 2"]
)
df = DataFrame(
[[0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0]],
index=index,
columns=["C1", "C2", "C3"],
)
result = (
df.style.hide(axis="index", level=[0, 1, 2])
.map_index(lambda v: "textbf:--rwrap;", axis="columns")
.to_latex()
)
expected = _dedent(r"""
\begin{tabular}{rrr}
\textbf{C1} & \textbf{C2} & \textbf{C3} \\
0 & 0 & 0 \\
0 & 0 & 0 \\
0 & 0 & 0 \\
0 & 0 & 0 \\
\end{tabular}
""")
assert result == expected