pandas_exercises
pandas_exercises copied to clipboard
Practice your pandas skills!
Chipotle的範本(若原來的Chipotle資料太長可用這份。)
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,...
hello, These codes were very helpful in studying the pandas for me. I want to post on a blog for studying data qualification exams in Korea.
The solution to the [chipotle exercise](https://github.com/guipsamora/pandas_exercises/tree/master/07_Visualization/Chipotle) under the visualising directory has the codes written in it unlike other exercises.
I figured that we can also use the year column of [US baby names](https://github.com/guipsamora/pandas_exercises/tree/master/06_Stats/US_Baby_Names) dataset for statistics as well. I created a question to find the year with highest number...
Step 9: there are 4 orders which ordered canned soda more than one time, but only one can one time. (these four orders are orders whose order_id= 81,108,496,1396) So, if...
Added a .python in .gitignore file
Step 8 solution is in 1960-1-1 format instead of 1960. Step 9 solution is 'crimes.idxmax (0)' instead of 'crime.idxmax (0)'.
Modified step 14 & step 16. Item price already takes into account the quantity. No need for "revenue" then. Thank you! :)