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
笔记
调整
low
和high
以保持文本清晰,不使用颜色图的整个范围。These extend the range of the data bylow * (x.max() - x.min())
andhigh * (x.max() - x.min())
before normalizing.