1

我正在将 csv 文件读入数据框中,然后使用 data nitro 允许用户根据 excel 单元格中的输入修改数据。这很好用,除非 df 列中的每个值都是 NaN。第一步是用户输入他希望访问其数据的实体的 UID。使用 UID 作为索引读取 csv。

这是代码:

class InterAction:
    def __init__(self) :
        self.PD_CL = pd.read_csv(r"C:\Users\rcreedon\Desktop\DataInProg\ContactList.csv", index_col = 'UID')

    def CheckCL_UID(self):
         self.UID = str(CellVal)
         if self.UID in self.PD_CL.index.values:
             return 'True'
         else:
             return "ERROR, the Factory Code you have entered is not in the Contact List"

    def UpdateContactDetails(self, Cell_GMNum, Cell_CNum, Cell_GMNam, Cell_CNam, Cell_GMDesig, Cell_CDesig):


        if not Cell_GMNum.is_empty():
             self.PD_CL['Cnum_gm'][self.UID] = str(Cell_GMNum.value)

        if not Cell_CNum.is_empty():
             self.PD_CL['Cnum_upd'][self.UID] = str(Cell_CNum.value)

        if not Cell_GMNam.is_empty():
             self.PD_CL['Cnam_gm'][self.UID] = str(Cell_GMNam.value)

        if not Cell_CNam.is_empty():
             self.PD_CL['Cnam_upd'][self.UID] = str(Cell_CNam.value)

        if not Cell_GMDesig.is_empty():
            self.PD_CL['Cdesig_gm'][self.UID] = str(Cell_GMDesig.value)

Inter = InterAction()
Cell("InputSheet", 5, 2).value = Inter.CheckCL_UID()
Inter.UpdateContactDetails(Cell("InputSheet", 3, 7), Cell("InputSheet",4, 7), Cell("InputSheet",5, 7), Cell("InputSheet",6, 7), Cell("InputSheet", 7, 7), Cell("InputSheet",8, 7))

使用 csv 数据帧索引中的 UID 为“MP01”时,当我运行此程序时,我收到关于 GMDesig 单元格中的用户输入的复合错误。它结束于

ValueError ['M' 'P' '0' '1'] 未包含在索引中。

我注意到 excel 文件中的 CDesig_gm 列是唯一没有值的列,因此作为 NaN 列被读入数据框中。当我向 csv 中的一个单元格添加一个无意义的值并重新运行程序时,它运行良好。

这里发生了什么,我很难过。

谢谢

4

1 回答 1

1

当您尝试更改列值时,您可能会收到 TypeError。将此添加到您的代码中:

if not Cell_GMDesig.is_empty():
        self.PD_CL['Cdesig_gm'] = self.PD_CL['Cdesig_gm'].astype(str)
        # cast to string first
        self.PD_CL['Cdesig_gm'][self.UID] = str(Cell_GMDesig.value)

(更多细节:当 Pandas 读取 CSV 时,它为每一列选择一个数据类型。一个空白列作为浮点列读入,将字符串写入其中一个条目将失败。

放入垃圾数据让 pandas 知道该列不应该是数字,因此写入成功。)

于 2013-07-17T20:22:50.027 回答