此问题已在此处有答案:
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的格式)
请速予帮助
需要一个代码来运行它在木星笔记本
此问题已在此处有答案:
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的格式)
请速予帮助
需要一个代码来运行它在木星笔记本
1条答案
按热度按时间xn1cxnb41#
按
Series.drop_duplicates
设置默认索引的每列使用Series.drop_duplicates
:或者使用
Series
构造函数和Series.unique
: