Ranking, splitting into quantiles with Python

Question

Suppose you're given a large table containing student grades, with the following structure:

age favorite_color grade name
0 20 blue 88 Willard Morris
1 19 blue 95 Al Jennings
2 22 yellow 92 Omar Mullins
3 21 green 70 Spencer McDaniel
4 21 green 94 Linda Ugo
5 20 blue 90 Susy Smith

You can assume the records below are a preview, and go on for some length.

Question:

Using Python, add a column with the student ranking in ascending order by 'grade'.

Next, calculate the following summary statistics for the student grades:

  • median grade
  • 25th percentile grade
  • 75th percentile grade

Click here to view this problem in an interactive Colab (Jupyter) notebook.

Solution

Access restricted

Subscribe to premium account to see the solution.

Get premium now