gpt4 book ai didi

python - 根据外观过滤 Pandas 交叉表

转载 作者:太空宇宙 更新时间:2023-11-04 07:55:41 25 4
gpt4 key购买 nike

我有一个巨大的 Pandas 交叉表,我想过滤只出现一次的项目,为了更容易解释,我会制作人工数据,这是我的数据

Customer_id        Apple     Book    Candy
1 0 1 1
2 1 1 0
3 1 1 0
4 1 0 0

因为Candy只出现过一次,所以结果会是这样

Customer_id        Apple     Book 
1 0 1
2 1 1
3 1 1
4 1 0

最佳答案

使用 dropna

df.replace(0,np.nan).dropna(axis=1,thresh=2).fillna(0).astype(int)
Out[18]:
Customer_id Apple Book
0 1 0 1
1 2 1 1
2 3 1 1
3 4 1 0

关于python - 根据外观过滤 Pandas 交叉表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49299944/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com