1/80
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
df.describe() gives a big-picture summary of all numerical data, such as averages, minimums, maximums, and spread. Use it first to understand the dataset and look for unusual values.midterm_exam_study_guide.docx
df.groupby("Category")["Profit"].sum() gives a category-by-category profit total. Use it to compare categories and find which ones make the most profit or cause losses.