'DataFrameGroupBy' object has no attribute 'index'
时间: 2023-11-06 12:09:01 浏览: 142
bcremoveobjectimageattributecontent:BC Remove Object Image Attribute Content 提供了一个稳定而灵活的解决方案,允许用户根据当前版本、所有版本或新版本动态删除内容对象图像属性内容。 提供对图像属性内容的脚本化操作!
这个错误是由于对DataFrameGroupBy对象使用了"index"属性而导致的。要解决这个问题,您可以尝试使用"groupby()"方法的"reset_index()"函数来重置索引。下面是您可以尝试的修改代码:
data_user_buy0 = data_user_buy1.count()['behavior_type'].reset_index().rename(columns={'behavior_type':'total'})
data_user_buy2 = data_user_buy0.groupby('date').sum()['total'] / data_user_buy0.groupby('date').count()['total']
这个修改应该可以解决您当前遇到的问题。
阅读全文