pandas.io.formats.style.Styler.where

Styler.where(cond, value, other=None, subset=None, **kwargs)[source]

Apply a function elementwise.

Updates the HTML representation with a style which is selected in accordance with the return value of a function.

Parameters
condcallable

cond should take a scalar and return a boolean.

valuestr

Applied when cond returns true.

otherstr

Applied when cond returns false.

subsetIndexSlice

A valid indexer to limit data to before applying the function. Consider using a pandas.IndexSlice.

**kwargsdict

Pass along to cond.

Returns
selfStyler

See also

Styler.applymap

Updates the HTML representation with the result.