pandas.formats.style.Styler.background_gradient

Styler.background_gradient(cmap='PuBu', low=0, high=0, axis=0, subset=None)[source]

根据每列(可选行)中的数据以渐变颜色背景。需要matplotlib。

版本0.17.1中的新功能。

参数:

cmap:str或colormap

matplotlib色图

低,高:浮动

通过这些值压缩范围。

axis:int或str

1或'列'用于colunwise,0或'index'用于rowwise

subset:IndexSlice

用于将data限制为样式应用程序的有效片段

返回:

self:Styler

笔记

调整lowhigh以保持文本清晰,不使用颜色图的整个范围。These extend the range of the data by low * (x.max() - x.min()) and high * (x.max() - x.min()) before normalizing.

Scroll To Top