以下のコードを実行すると、三行目のaveの部分でエラー
UndefinedVariableError: name 'ave' is not defined
が出てしまいます。
一行目でaveを定義しているつもりなのですが、何が原因なのでしょうか。
python
1ave=df_receipt[~df_receipt["customer_id"].str.startswith("Z")].groupby("customer_id").amount.sum().mean() 2df_tmp=df_receipt[~df_receipt["customer_id"].str.startswith("Z")].groupby("customer_id").agg({"amount":"sum"}) 3df_tmp.query("amount=>ave")
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2021/01/14 12:49