pandas.io.formats.style.Styler.where¶
-
Styler.where(cond, value, other=None, subset=None, **kwargs)[source]¶ Apply a function elementwise, updating the HTML representation with a style which is selected in accordance with the return value of a function.
New in version 0.21.0.
- Parameters
- condcallable
condshould take a scalar and return a boolean- valuestr
applied when
condreturns true- otherstr
applied when
condreturns false- subsetIndexSlice
a valid indexer to limit
datato before applying the function. Consider using a pandas.IndexSlice- kwargsdict
pass along to
cond
- Returns
- selfStyler
See also