如何使用熊猫在Excel中为特定行添加背景色

时间:2019-07-15 18:20:16

标签: python pandas

我需要为特定行添加背景色。以下是条件。 1.在搜索模式行之前需要添加背景色。

下面是Excel

In [96]: df.col_A.str.replace(r"\s*,\s*", ",").str.get_dummies(",").sum()
Out[96]:
angry        2
happy        4
not happy    1
sad          3
dtype: int64

需要为Name3和Name15行添加2种背景颜色,因为我的搜索模式是“ 23_Security”。 任何帮助表示赞赏。

我尝试了以下脚本。它仅添加背景色指定的行。

下面是代码:

Name    Depth   TOTAL_AREA  Category     Sub Category_1  Sub Category_2 cell_type
Name1   0       57.1228709  11_DDR          
Name2   1       0.4181432                                               HM
Name3   1       1.4674                                                  HM
Name4   2       0.972       23_Security  Security_Processor sp_wrapper  HM
Name5   2       0.24        23_Security  Security_Processor sp_wrapper  
Name6   2       0.2456      23_Security  Security_Processor sp_wrapper  STD
Name7   2       0.0098      23_Security  Security_Processor sp_wrapper  STD
Name8   1       0.0008984   11_DDR       SHUB               GEMNOC      STD
Name9   1       0.0006654   11_DDR       SHUB               GEMNOC      STD
Name10  1       0.000237    11_DDR       SHUB               GEMNOC      STD
Name11  1       0.0000341   02_GPU       gfx_core           gfx_core    STD
Name12  1       8.16E-05    02_GPU       gfx_core           gfx_core    STD
Name13  1       2.79E-05    08_Modem    modem_offline   modem_lmem_cluster_0    STD
Name14  1   -   0.0000498   02_GPU      gfx_core        gfx_core    
Name15  2       0.018118                
Name16  3       0.0087      23_Security  Security_Processor sp_wrapper  HM
Name17  3       0.000765    23_Security Security_Processor  sp_wrapper  HM
Name18  3       0.008653    23_Security Security_Processor  sp_wrapper  STD

0 个答案:

没有答案