You work at Goober Elementary 👩🎓, where students recently took their initial exams. The grades are in, and you want to analyze them. In their current form they look like this
You decided to categorize scores into the following tiers
stellar: score >= 90
passing: score in the range [60, 90)
failing: score in the range [10, 60)
abysmal: score < 10. Just for kicks. No one would score this low.....
Pop the grades.csv file into a BigQuery table named grades. Then measure the number of students who fall into each (gender, tier) pair, for each subject, producing an output like this.
Make sure the output is ordered by (gender, tier), where the tiers are in order from best to worst.