ValueError DataFrame构造函数未正确调用

时间:2018-09-19 10:00:20

标签: python pandas valueerror

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!

1 个答案:

答案 0 :(得分:0)

客户似乎是一个DataFrame。

如果是,则无需通过 pd.DataFrame(..)来确定它。

让我们尝试一下:

billing_descrp= customer.groupby('Invoice No')['Item No'].count()
print(billing_descrp)

以count作为聚合函数。