Pandas:使用合并的单元格和空白值解析 Excel 电子表格

Posted

技术标签:

【中文标题】Pandas:使用合并的单元格和空白值解析 Excel 电子表格【英文标题】:Pandas: Parse Excel spreadsheet with merged cells and blank values 【发布时间】:2021-06-19 03:39:25 【问题描述】:

我的问题类似于this one。我有一个包含一些合并单元格的电子表格,但包含合并单元格的列也有空单元格,例如:

Day     Sample  CD4     CD8
----------------------------
Day 1   8311    17.3    6.44
        --------------------
        8312    13.6    3.50
        --------------------
        8321    19.8    5.88
        --------------------
        8322    13.5    4.09
----------------------------
Day 2   8311    16.0    4.92
        --------------------
        8312    5.67    2.28
        --------------------
        8321    13.0    4.34
        --------------------
        8322    10.6    1.95
----------------------------
        8323    16.0    4.92
----------------------------
        8324    5.67    2.28
----------------------------
        8325    13.0    4.34

如何将其解析为 Pandas DataFrame?我知道fillna(method='ffill') 方法不会解决我的问题,因为它会用其他东西替换实际缺失的值。我想得到这样的 DataFrame:

Day     Sample  CD4     CD8
----------------------------
Day 1   8311    17.3    6.44
----------------------------
Day 1   8312    13.6    3.50
----------------------------
Day 1   8321    19.8    5.88
----------------------------
Day 1   8322    13.5    4.09
----------------------------
Day 2   8311    16.0    4.92
----------------------------
Day 2   8312    5.67    2.28
----------------------------
Day 2   8321    13.0    4.34
----------------------------
Day 2   8322    10.6    1.95
----------------------------
NA      8323    16.0    4.92
----------------------------
NA      8324    5.67    2.28
----------------------------
NA      8325    13.0    4.34

【问题讨论】:

@BigBen 现在,我需要缺失值才能保持缺失。我编辑了我的问题以添加一个示例,说明我需要如何使用 DataFrame 【参考方案1】:

假设您知道 excel 文件的起始行(或提出更好的检查方法),这样的事情应该可以工作

import pandas as pd
import numpy as np
import openpyxl
def test():
    filepath = "C:\\Users\\me\\Desktop\\SO nonsense\\PandasMergeCellTest.xlsx"
    df = pd.read_excel(filepath)
    wb = openpyxl.load_workbook(filepath)
    sheet = wb["Sheet1"]
    df["Row"] = np.arange(len(df)) + 2 #My headers were row 1 so adding 2 to get the row numbers
    df["Merged"] = df.apply(lambda x: checkMerged(x, sheet), axis=1)
    df["Day"] = np.where(df["Merged"] == True, df["Day"].ffill(), np.nan)
    df = df.drop(["Row", "Merged"], 1)
    print(df)

def checkMerged(x, sheet):
    cell = sheet.cell(x["Row"], 1)
    for mergedcell in sheet.merged_cells.ranges:
        if(cell.coordinate in mergedcell):
            return True

test()

【讨论】:

以上是关于Pandas:使用合并的单元格和空白值解析 Excel 电子表格的主要内容,如果未能解决你的问题,请参考以下文章

表单综合

解析 / Swift 问题与 tableviewcell“二元运算符'=='不能应用于单元格和 nil 类型的操作数”

将多个值写入一个单元格 - VBA

如何获取特定匹配值的起始单元格和结束单元格地址?

使用 Pandas to_sql 时获取 sqlalchemy.exc.InternalError 异常值为 'cursor.execute(statement, parameters)'

Keras 如何处理单元格和隐藏状态(RNN、LSTM)的初始值以进行推理?