df.style.background_gradient(cmap, axis=1).set_properties(**{'max-width': '80px', 'font-size': '1pt'})\
时间: 2023-06-19 14:09:30 浏览: 374
这段代码的作用是将DataFrame中每一行的数据根据colormap指定的颜色进行渐变着色,并且设置每列的最大宽度为80像素,字体大小为1pt。其中cmap是colormap,axis=1表示按行进行渐变着色。set_properties是设置DataFrame中的单元格属性,**{'max-width': '80px', 'font-size': '1pt'}表示设置最大宽度和字体大小的属性字典。
相关问题
df.style.background_gradient中有哪些参数
df.style.background_gradient中常用的参数有:cmap、low、high、axis、subset、text_color_threshold、vmin、vmax、center、robust。
阅读全文