用法:
Styler.export()
导出应用于当前 Styler 的样式。
可以使用
Styler.use
应用于第二个 Styler。- styles:dict
返回:
注意:
此方法旨在将一个 Styler 的非数据依赖属性复制到另一个 Styler。它与
Styler.copy
不同,其中还复制了数据和数据相关属性。以下项目被导出,因为它们通常不依赖于数据:
Styling functions added by the
apply
andapplymap
Whether axes and names are hidden from the display, if unambiguous.
Table attributes
Table styles
以下属性被视为与数据相关,因此不会导出:
Caption
UUID
Tooltips
Any hidden rows or columns identified by Index labels
Any formatting applied using
Styler.format
Any CSS classes added using
Styler.set_td_classes
例子:
>>> 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.use用法及代码示例
- 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.set_table_styles用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.io.formats.style.Styler.export。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。