The college dataset has many numeric columns describing different metrics about each school. Many people are interested in schools that perform the best for certain metrics.
Highlighting the maximum value from each column
Getting ready
This recipe discovers the school that has the maximum value for each numeric column and styles the DataFrame in order to highlight the information so that it is easily consumed by a user.
How to do it...
- Read the college dataset with the institution name as the index:
>>> college = pd.read_csv('data/college.csv', index_col...