-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
ENH: consistent Styler.highlight_X
arg signature with props
#40242
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
Conversation
pandas/io/formats/style.py
Outdated
-------- | ||
Styler.highlight_max: Highlight the maximum with a style. | ||
Styler.highlight_min: Highlight the minimum with a style. | ||
Styler.highlight_quantile: Highlight values defined by a quantile with a style. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need to take these new highlites out
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed
pandas/io/formats/style.py
Outdated
|
||
Notes | ||
----- | ||
Uses ``pandas.isna()`` to detect the missing values. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is this here? we use isna for detecting missing values by default, so this is not surprising.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed
pandas/io/formats/style.py
Outdated
-------- | ||
Styler.highlight_null: Highlight missing values with a style. | ||
Styler.highlight_max: Highlight the maximum with a style. | ||
Styler.highlight_quantile: Highlight values defined by a quantile with a style. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
removed
lgtm. ping on greenish (or green if you had rebased recently) |
@jreback green now |
thanks @attack68 |
This splits #39821 into separate PRs.
The
See Also
doc strings here reference methods created in those PRs - if we push this through now I will fix it later if those methods don't get approved before 1.3.0.The tests that were edited contained redundant code and were not testing.