Matias Calderini
Results
1
comments of
Matias Calderini
I agree too. However, to get the number of products costing more than $10.00, I believe you could use a simpler command: `chipo.loc[chipo['item_price']/chipo['quantity'] > 10, 'item_name'].drop_duplicates().shape[0]` Hope this helps other...