我正在将 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 中的一个单元格添加一个无意义的值并重新运行程序时,它运行良好。
这里发生了什么,我很难过。
谢谢