You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the chipotle dataset I believe the total revenue is incorrect.
It assumes that the quantity must be multiplied by the price to get the the total. (chipo['quantity']* chipo['item_price']).sum()
However, I believe that the quantity is already included in the price, as can be seen by examining chipo[chipo['item_name'] == '6 Pack Soft Drink']
It think the following is sufficient. chipo['item_price']).sum()
The text was updated successfully, but these errors were encountered:
In the chipotle dataset I believe the total revenue is incorrect.
It assumes that the quantity must be multiplied by the price to get the the total.
(chipo['quantity']* chipo['item_price']).sum()
However, I believe that the quantity is already included in the price, as can be seen by examining
chipo[chipo['item_name'] == '6 Pack Soft Drink']
It think the following is sufficient.
chipo['item_price']).sum()
The text was updated successfully, but these errors were encountered: