我在数据框列中查找重复条目。当我找到重复的条目时,我想引发一条错误消息并指向索引。但是,我在列中也有许多缺少的条目,这些条目不被视为重复。
我的代码现在看起来像:
temp = df[pd.notnull(df['col1'])
dups = temp.duplicated('col1')
for x in dups:
if x == True:
# Print error message which points to the index of x
我尝试在行计数器中添加,但pd.notnull会弄乱计数,因为它不考虑重复。有没有找到重复的另一种方法?
由于