用法:
Styler.use(styles)
在当前 Styler 上设置样式。
可能使用来自
Styler.export
的样式。- styles:字典(字符串,任何)
- 要添加到 Styler 的属性列表。字典键应仅包含:
“apply”:样式器函数列表,通常与
apply
或applymap
一起添加。“table_attributes”:HTML 属性,通常与
set_table_attributes
一起添加。“table_styles”:CSS 选择器和属性,通常与
set_table_styles
一起添加。“hide_index”:索引是否隐藏,通常添加
hide_index
或隐藏级别的布尔列表。“hide_columns”:是否隐藏列标题,通常使用
hide_columns
或隐藏级别的布尔列表添加。“hide_index_names”:索引名称是否隐藏。
“hide_column_names”:是否隐藏列标题名称。
“css”:使用的css类名。
- self:造型器
参数:
返回:
例子:
>>> styler = DataFrame([[1, 2], [3, 4]]).style >>> styler2 = DataFrame([[9, 9, 9]]).style >>> styler.hide(axis=0).highlight_max(axis=1) >>> export = styler.export() >>> styler2.use(export)
相关用法
- Python pandas.io.formats.style.Styler.format_index用法及代码示例
- Python pandas.io.formats.style.Styler.text_gradient用法及代码示例
- Python pandas.io.formats.style.Styler.hide用法及代码示例
- Python pandas.io.formats.style.Styler.set_table_attributes用法及代码示例
- Python pandas.io.formats.style.Styler.set_tooltips用法及代码示例
- Python pandas.io.formats.style.Styler.set_properties用法及代码示例
- Python pandas.io.formats.style.Styler.apply_index用法及代码示例
- Python pandas.io.formats.style.Styler.set_td_classes用法及代码示例
- Python pandas.io.formats.style.Styler.to_latex用法及代码示例
- Python pandas.io.formats.style.Styler.pipe用法及代码示例
- Python pandas.io.formats.style.Styler.where用法及代码示例
- Python pandas.io.formats.style.Styler.format用法及代码示例
- Python pandas.io.formats.style.Styler.highlight_between用法及代码示例
- Python pandas.io.formats.style.Styler.applymap用法及代码示例
- Python pandas.io.formats.style.Styler.applymap_index用法及代码示例
- Python pandas.io.formats.style.Styler.background_gradient用法及代码示例
- Python pandas.io.formats.style.Styler.to_excel用法及代码示例
- Python pandas.io.formats.style.Styler.highlight_quantile用法及代码示例
- Python pandas.io.formats.style.Styler.export用法及代码示例
- Python pandas.io.formats.style.Styler.set_table_styles用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.io.formats.style.Styler.use。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。