On this page
pandas.io.formats.style.Styler.highlight_null
- Styler.highlight_null(color=None, subset=None, props=None, null_color=_NoDefault.no_default)[source]
-
Highlight missing values with a style.
- Parameters
-
- color:str, default ‘yellow’
-
Background color to use for highlighting.
New in version 1.5.0.
- subset:label, array-like, IndexSlice, optional
-
A valid 2d input to DataFrame.loc[<subset>], or, in the case of a 1d input or single key, to DataFrame.loc[:, <subset>] where the columns are prioritised, to limit
data
to before applying the function.New in version 1.1.0.
- props:str, default None
-
CSS properties to use for highlighting. If
props
is given,color
is not used.New in version 1.3.0.
- null_color:str, default None
-
The background color for highlighting.
Deprecated since version 1.5.0: Use
color
instead. Ifcolor
is givennull_color
is not used.
- Returns
-
- self:Styler
See also
-
Styler.highlight_max
-
Highlight the maximum with a style.
-
Styler.highlight_min
-
Highlight the minimum with a style.
-
Styler.highlight_between
-
Highlight a defined range with a style.
-
Styler.highlight_quantile
-
Highlight values defined by a quantile with a style.
© 2008–2022, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
Licensed under the 3-clause BSD License.
https://pandas.pydata.org/pandas-docs/version/1.5.0/reference/api/pandas.io.formats.style.Styler.highlight_null.html