pandas.io.formats.style.Styler.set_properties¶
- Styler.set_properties(subset=None, **kwargs)[source]¶
Method to set one or more non-data dependent properties or each cell.
- Parameters
- subsetIndexSlice
A valid slice for
data
to limit the style application to.- **kwargsdict
A dictionary of property, value pairs to be set for each cell.
- Returns
- selfStyler
Examples
>>> df = pd.DataFrame(np.random.randn(10, 4)) >>> df.style.set_properties(color="white", align="right") >>> df.style.set_properties(**{'background-color': 'yellow'})