billing_descrp= pd.DataFrame(customer.groupby('Invoice No')['Item No'])
print(billing_descrp)
raise ValueError('DataFrame constructor not properly called!')
ValueError: DataFrame constructor not properly called!
答案 0 :(得分:0)
客户似乎是一个DataFrame。
如果是,则无需通过 pd.DataFrame(..)来确定它。
让我们尝试一下:
billing_descrp= customer.groupby('Invoice No')['Item No'].count()
print(billing_descrp)
以count作为聚合函数。