python duplicated()数据框

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python duplicated()数据框相关的知识,希望对你有一定的参考价值。


dframe = DataFrame({'key1': ['A'] * 2 + ['B'] * 3,
'key2': [2, 2, 2, 3, 3]})



dframe.duplicated() #gives a boolean vector of true and false #length of vector = nrow(dframe)
dframe.drop_duplicates() #just drops duplicate rows #just keep the first one
dframe.drop_duplicates(['key1']) #drops duplicates by a single column #just keep the first one
dframe.drop_duplicates(['key1'],keep='last') #take the last value of duplicate

以上是关于python duplicated()数据框的主要内容,如果未能解决你的问题,请参考以下文章

JSON到Python数据框转换[重复]

Python嵌套字典到数据框[重复]

将字典转换为 Python 数据框 [重复]

将python数据框转换为列表[重复]

在python中用字典翻译数据框[重复]

将列表转换为熊猫数据框python [重复]