pandas_exercises
pandas_exercises copied to clipboard
Practice your pandas skills!
Results
42
pandas_exercises issues
Sort by
recently updated
recently updated
newest added
## Changes 1. Corrected a typo in the folder name Titanic_Desaster, changing it to Titanic_Disaster. 2. Added underscores to multiword folder names to improve file naming consistency. 3. This closes...
### **Description** #### Problem: The code for finding the most popular item used in the solution: ```python c = chipo.groupby('item_name') c = c.sum() c = c.sort_values(['quantity'], ascending=False) c.head(1) ``` This...