风格

Styler对象由 . 返回pandas.DataFrame.style

样式器构造函数#

Styler(数据[,精度,表样式,...])

使用 HTML 和 CSS 根据数据帮助设置 DataFrame 或 Series 的样式。

Styler.from_custom_template(搜索路径[,...])

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

样式器属性#

Styler.env

Styler.template_html

Styler.template_html_style

Styler.template_html_table

Styler.template_latex

Styler.template_string

Styler.loader

样式应用#

Styler.apply(函数[,轴,子集])

按列、按行或按表应用 CSS 样式函数。

Styler.map(函数[,子集])

按元素应用 CSS 样式函数。

Styler.apply_index(函数[,轴,水平])

将 CSS 样式函数逐级应用于索引或列标题。

Styler.map_index(函数[,轴,水平])

按元素将 CSS 样式函数应用于索引或列标题。

Styler.format([格式化程序、子集、na_rep、...])

设置单元格文本显示值的格式。

Styler.format_index([格式化程序、轴、...])

设置索引标签或列标题的文本显示值的格式。

Styler.relabel_index(标签[、轴、级别])

重新标记索引或列标题键以显示一组指定值。

Styler.hide([子集、轴、级别、名称])

隐藏整个索引/列标题,或从显示中隐藏特定行/列。

Styler.concat(其他)

附加另一个样式器以将输出合并到一个表中。

Styler.set_td_classes(课程)

设置HTML 元素class的属性。<td>

Styler.set_table_styles([表样式,...])

设置 HTML 元素中包含的表格样式<style>

Styler.set_table_attributes(属性)

设置添加到 HTML 元素的表格属性<table>

Styler.set_tooltips(提示[, props, css_class])

Styler在生成工具提示时设置字符串的 DataFrame :hover

Styler.set_caption(标题)

设置添加到 HTML 元素的文本<caption>

Styler.set_sticky([轴、像素大小、级别])

添加 CSS 以在滚动框架中永久显示索引或列标题。

Styler.set_properties([子集])

<td>为给定子集的每个 HTML 元素设置定义的 CSS 属性。

Styler.set_uuid(uuid)

id设置应用于HTML 元素属性的uuid 。

Styler.clear()

重置Styler,删除任何以前应用的样式。

Styler.pipe(func, *args, **kwargs)

应用,并返回结果。func(self, *args, **kwargs)

内置样式#

Styler.highlight_null([颜色、子集、道具])

用样式突出显示缺失值。

Styler.highlight_max([子集、颜色、轴...])

用一种风格突出最大程度。

Styler.highlight_min([子集、颜色、轴...])

用一种风格突出最低限度。

Styler.highlight_between([子集、颜色、...])

用样式突出显示定义的范围。

Styler.highlight_quantile([子集、颜色、...])

突出显示由具有样式的分位数定义的值。

Styler.background_gradient([cmap,低,...])

以渐变样式为背景着色。

Styler.text_gradient([cmap,低,高,...])

以渐变样式为文本着色。

Styler.bar([子集、轴、颜色、cmap、...])

在单元格背景中绘制条形图。

样式导出和导入#

Styler.to_html([buf, table_uuid, ...])

将 Styler 以 HTML-CSS 格式写入文件、缓冲区或字符串。

Styler.to_latex([buf, 列格式, ...])

将 Styler 以 LaTeX 格式写入文件、缓冲区或字符串。

Styler.to_excel(excel_writer[,工作表名称,...])

将 Styler 写入 Excel 工作表。

Styler.to_string([缓冲区,编码,...])

将 Styler 以文本格式写入文件、缓冲区或字符串。

Styler.export()

导出应用于当前样式器的样式。

Styler.use(款式)

在当前样式器上设置样式。