pandas.io.formats.style.Styler.from_custom_template#

classmethod Styler.from_custom_template(searchpath, html_table=None, html_style=None)[源代码][源代码]#

用于创建 Styler 子类的工厂函数。

使用自定义模板和Jinja环境。

在 1.3.0 版本发生变更.

参数:
searchpathstr 或 list

包含模板的目录路径或路径。

html_tablestr

替换 html_table 模板的自定义模板名称。

Added in version 1.3.0.

html_stylestr

用于替换 html_style 模板的自定义模板名称。

Added in version 1.3.0.

返回:
MyStylerStyler 的子类

已正确设置 envtemplate_htmltemplate_html_tabletemplate_html_style 类属性。

例子

>>> from pandas.io.formats.style import Styler
>>> EasyStyler = Styler.from_custom_template(
...     "path/to/template",
...     "template.tpl",
... )  
>>> df = pd.DataFrame({"A": [1, 2]})
>>> EasyStyler(df)  

请参见:表格可视化 以获取更多示例。