Session Ready
Exercise

Building a FacetGrid

Seaborn's FacetGrid is the foundation for building data-aware grids. A data-aware grid allows you to create a series of small plots that can be useful for understanding complex data relationships.

For these exercises, we will continue to look at the College Scorecard Data from the US Department of Education. This rich dataset has many interesting data elements that we can plot with Seaborn.

When building a FacetGrid, there are two steps:

  • Create a FacetGrid object with columns, rows, or hue.
  • Map individual plots to the grid.
Instructions
100 XP
  • Create a FacetGrid that shows a point plot of the Average SAT scores SAT_AVG_ALL.
  • Use row_order to control the display order of the degree types.