嗨,我正在使用Groupby函数来找出每个品牌的最大值,但是它返回的k值错误。数据集本身没有值。
已经尝试创建df。
# Group by Brand categories
brand_groups = crm.groupby("Brand")
# Apply max function to spend column
max_spend_by_brand = brand_groups['12month spend','24month spend'].max()
max_spend_by_brand
12 Month Spend 24 Month Spend
A $ 999,544.00 $ 999,976.00
C $ 999,966.00 $ 999,916.00
K $ 999,911.00 $ 999.00
我确实检查了原始数据,999.00美元不是K品牌的任何商品。数据集本身甚至没有它。它来自哪里?