pandas 删除数据框每列中的重复条目[重复]

w8f9ii69  于 2023-06-20  发布在  其他
关注(0)|答案(1)|浏览(97)

此问题已在此处有答案

Data frame with unique values from other data frame(pandas, python)(1个答案)
13天前关闭。
表1是初始 Dataframe 。enter image description here
表2是期望的 Dataframe 。enter image description here
(我在原始DF中有1000列,需要转换为表1至表2的格式)
请速予帮助
需要一个代码来运行它在木星笔记本

xn1cxnb4

xn1cxnb41#

Series.drop_duplicates设置默认索引的每列使用Series.drop_duplicates

out = df.apply(lambda x: x.drop_duplicates().reset_index(drop=True))

或者使用Series构造函数和Series.unique

out = df.apply(lambda x: pd.Series(x.unique()))

相关问题