-
Identify top math-performing schools
-
Select schools where the average math score is at least 80% of the maximum possible (≥ 640 out of 800).
-
Save results in a DataFrame named
best_math_schoolswith the following columns:school_nameaverage_math
-
Sort the results by
average_mathin descending order.
-
-
Find the top 10 schools by combined SAT scores
-
Create a new column
total_SATas the sum of math, reading, and writing scores. -
Save results in a DataFrame named
top_10_schoolswith the following columns:school_nametotal_SAT
-
Order results by
total_SATin descending order and select the top 10 schools.
-
-
Determine borough with largest score variability
-
Group schools by borough and compute statistics on
total_SAT. -
Save results in a DataFrame named
largest_std_devcontaining only one row with:borough– the name of the borough with the largest standard deviation intotal_SAT.num_schools– number of schools in that borough.average_SAT– mean oftotal_SAT.std_SAT– standard deviation oftotal_SAT.
-
Round all numeric values to two decimal places.
-
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|