如何在df.to_html()中使用类方法?
我尝试过:
css_class = {'border-width': 'thin'}
df.to_html(index=False,classes=css_class)
我收到一个错误:TypeError:序列项1:预期的字符串,找到了dict
示例数据:
df = DataFrame({'A':[1,1,2,3,5],'B':[3,4,5,6,7]})
我必须将此写到电子邮件中。现在输出如下:
如何减小边框宽度并使之成为单线边框/细边框。
df.to_html()文档没有给出示例。