gpt4 book ai didi

python - Pandas 造型师。如何忽略呈现的 HTML 中的索引列

转载 作者:技术小花猫 更新时间:2023-10-29 11:24:11 25 4
gpt4 key购买 nike

我正在尝试使用通过在电子邮件中呈现样式器生成的字符串。似乎真的很难让它忽略数据帧索引。

table_styles = [dict(selector="tbody tr th", props=[("display", "none")]),
st=df.style.set_table_styles(table_styles)
st.render()

我已经能够使它与 display none CSS 设置一起工作,但它在基于 CSS 支持级别的不同设备上的工作方式不同。
有没有办法让索引有效负载消失?

最佳答案

我认为我的解决方案与您的解决方案相同,并且我面临着与您相同的问题(不同设备上的显示不同)。我只是在这里写下部分解决方案,以帮助正在寻找解决方法的人。

如果你执行 html.render().split('\n') 你将能够得到与第一列和索引相关的类结构(如果你已经使用了 resent_index) .

然后可以定义样式以使用显示的 CSS 属性去除这些列。

# define the style related to first column and index here
# first-element : when index =True,
# second element: default index of the table generated by the Style
styles = [
dict(selector = ".col0", props = [('display', 'none')]),
dict(selector = "th:first-child", props = [('display', 'none')])
]

# set the table styles here
table.set_table_styles(styles)

关于python - Pandas 造型师。如何忽略呈现的 HTML 中的索引列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34714145/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com