用熊猫为excel中的单元格着色

Posted

技术标签:

【中文标题】用熊猫为excel中的单元格着色【英文标题】:coloring cells in excel with pandas 【发布时间】:2017-01-10 23:45:04 【问题描述】:

我需要一些帮助。所以我有这样的东西

import pandas as pd
path = '/Users/arronteb/Desktop/excel/ejemplo.xlsx'
xlsx = pd.ExcelFile(path)
df = pd.read_excel(xlsx,'Sheet1')
df['is_duplicated'] = df.duplicated('#CSR')
df_nodup = df.loc[df['is_duplicated'] == False]
df_nodup.to_excel('ejemplo.xlsx', encoding='utf-8')

所以基本上这个程序将ejemplo.xlsx(ejemlo 是西班牙语的例子,只是文件名)加载到dfDataFrame)中,然后检查特定列中的重复值​​。它会删除重复项并再次保存文件。那部分工作正常。问题是,我需要用不同的颜色(例如黄色)突出显示包含重复项的单元格,而不是删除重复项。

【问题讨论】:

【参考方案1】:

您可以创建一个函数来进行突出显示...

def highlight_cells():
    # provide your criteria for highlighting the cells here
    return ['background-color: yellow']

然后将突出显示功能应用于您的数据框...

df.style.apply(highlight_cells)

【讨论】:

谢谢,我会尝试这种方式 @CarlosArronteBello 好运吗? @CarlosArronteBello 太棒了!很高兴能为您提供帮助。 这只能从版本 0.17.1 开始,如 pandas.pydata.org/pandas-docs/stable/style.html 中所述 如果这不起作用,用户applymap而不是apply,在highlight_cells函数上设置至少一个参数并返回background-color: yellow而不是['background-color: yellow']【参考方案2】:

我也遇到了同样的问题,这周我刚刚解决了。我的问题是没有让包含正常工作以获取我发现正常工作的在线代码。

我假设您的意思是更改背景颜色而不是更改字体颜色。如果我错了,请澄清您的要求。

我的解决方案与特定库相关联。打开pyxl

#### This import section is where my mistake was at
#### This works for me
import openpyxl    ### Excel files 
from openpyxl.styles import PatternFill, Border, Side, Alignment, Protection, Font
from openpyxl.styles import Fill, Color
from openpyxl.styles import Style
from openpyxl.styles.colors import RED
from openpyxl.styles.colors import GREEN


str_xls_PathFileCurrent = str_xls_FileName
### Opens Excel Document
var_xls_FileOpen    = openpyxl.load_workbook(str_xls_PathFileCurrent) 
### Opens up the Excel worksheet 
var_xls_TabName     = var_xls_FileOpen.worksheets[0]                  
### Put the spreadsheet tab names into an array 
ary_xls_SheetNames  = var_xls_FileOpen.get_sheet_names()              
### Open the sheet in the file you working on 
var_xls_TabSheet    = var_xls_FileOpen.get_sheet_by_name(ary_xls_SheetNames[0])
xls_cell = var_xls_TabSheet['d10']

#### Changes the cell background color 
xls_cell.style = Style(fill=PatternFill(patternType='solid'
    , fgColor=Color('C4C4C4')))  ### Changes background color 

#### Changes the fonts (does not use style) 
xls_cell.font = xls_cell.font.copy(color  = 'FFFF0000') ### Works (Changes to red font text) 
xls_cell.font = xls_cell.font.copy(bold  = True) ### Works (Changes to bold font) 
xls_cell.font = xls_cell.font.copy(italic= True) ### Works (Changes to Italic Text) 
xls_cell.font = xls_cell.font.copy(size  =   34) ### Works (Changes Size) 

【讨论】:

右为背景色。我将尝试使用您的代码的某些部分。谢谢

以上是关于用熊猫为excel中的单元格着色的主要内容,如果未能解决你的问题,请参考以下文章

有条件地格式化 Python 熊猫单元格

excel单元格着色

使用 Pandas/ExcelWriter 为单元格中的文本部分着色

使用EPPlus在Excel中的列上使用文本/值着色整个行单元格

在Excel中,需要计算从条件格式中着色的单元格,然后创建特定结果的报告

将值写入python中熊猫工作表中的特定单元格