We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b8e09a commit 91a5f36Copy full SHA for 91a5f36
bisect/42750.py
@@ -0,0 +1,10 @@
1
+# BUG: highlight_min and highlight_max do not work with pd.NA #42750
2
+
3
+import pandas as pd
4
5
+print(pd.__version__)
6
7
+df = pd.DataFrame(dict(a=[pd.NA, -1, 1], b=[pd.NA, -1, 1]))
8
9
+result = df.style.highlight_min().render()
10
+print(result)
0 commit comments