我正在尝试在转换为 HTML 时合并数据框中的单元格。但是,以行行结尾。是否可以在转换为 HTML 时仅合并数据框中的特定单元格,或者我们可以为多列提供标题选项,但不能使用行?它应该是标题。
转换为 html 时,正在使用样式函数
th_props = [
('border', '1px solid black'),
('border-collapse','collapse')
]
styles = [
dict(selector="th", props=th_props),
dict(selector="td", props=th_props)
]
lic_data.style.applymap(self.color_negative_red, subset=['Utilised Percentage']).hide_index().set_table_styles(styles).render() )
在"应用程序"列中,我想合并所有三列,并且只有地图标题应该没有行。 否则,如果我删除应用程序列,我需要将 Map 作为其余列的标题。
让我知道是否有任何方法可以做到这一点,或者这是不可能的。
谢谢
在此处输入图像描述
我无法做到这一点。但是我试图将标题添加到表格中作为一种选项,并且比这非常可行。
styles = [dict(selector="th", props=th_props), dict(selector="td", props=th_props), dict(selector="caption", props=[("text-align", "center"), ("font-weight", "bold"), ("font-size", "120%"),("color", 'orange')])]
lic_data.style.applymap(self.color_negative_red, subset=['% Utilized']).hide_index().set_table_styles(styles).set_caption('caption').render() )