sns11 - Building Structured Multi Plot Grids
sns11 - Building Structured Multi Plot Grids
When exploring multi-dimensional data, a useful approach is to draw multiple instances of the same plot on different subsets of your dataset.
This technique is sometimes called either “lattice” or “trellis” plotting, and it is related to the idea of “small multiples”. It allows a viewer to
quickly extract a large amount of information about a complex dataset. Matplotlib offers good support for making figures with multiple axes;
seaborn builds on top of this to directly link the structure of the plot to the structure of your dataset.
The figure-level functions are built on top of the objects discussed in this chapter of the tutorial. In most cases, you will want to work with those
functions. They take care of some important bookkeeping that synchronizes the multiple plots in each grid. This chapter explains how the
underlying objects work, which may be useful for advanced applications.
Each of relplot() , displot() , catplot() , and lmplot() use this object internally, and they return the object when they are finished so that
it can be used for further tweaking.
The class is used by initializing a FacetGrid object with a dataframe and the names of the variables that will form the row, column, or hue
dimensions of the grid. These variables should be categorical or discrete, and then the data at each level of the variable will be used for a facet
along that axis. For example, say we wanted to examine differences between lunch and dinner in the tips dataset:
Initializing the grid like this sets up the matplotlib figure and axes, but doesn’t draw anything on them.
The main approach for visualizing data on this grid is with the FacetGrid.map() method. Provide it with a plotting function and the name(s) of
variable(s) in the dataframe to plot. Let’s look at the distribution of tips in each of these subsets, using a histogram:
This function will draw the figure and annotate the axes, hopefully producing a finished plot in one step. To make a relational plot, just pass
multiple variable names. You can also provide keyword arguments, which will be passed to the plotting function:
Building structured multi-plot grids — seaborn 0.13.2 documentation https://seaborn.pydata.org/tutorial/axis_grids.html
multiple variable names. You can also provide keyword arguments, which will be passed to the plotting function:
There are several options for controlling the look of the grid that can be passed to the class constructor.
Note that margin_titles isn’t formally supported by the matplotlib API, and may not work well in all cases. In particular, it currently can’t be
used with a legend that lies outside of the plot.
The size of the figure is set by providing the height of each facet, along with the aspect ratio:
2 of 12 09/02/2024, 06:10
Building structured multi-plot grids — seaborn 0.13.2 documentation https://seaborn.pydata.org/tutorial/axis_grids.html
The default ordering of the facets is derived from the information in the DataFrame. If the variable used to define facets has a categorical type,
then the order of the categories is used. Otherwise, the facets will be in the order of appearance of the category levels. It is possible, however,
to specify an ordering of any facet dimension with the appropriate *_order parameter:
ordered_days = tips.day.value_counts().index
g = sns.FacetGrid(tips, row="day", row_order=ordered_days,
height=1.7, aspect=4,)
g.map(sns.kdeplot, "total_bill")
Any seaborn color palette (i.e., something that can be passed to color_palette() ) can be provided. You can also use a dictionary that maps
the names of values in the hue variable to valid matplotlib colors:
3 of 12 09/02/2024, 06:10
Building structured multi-plot grids — seaborn 0.13.2 documentation https://seaborn.pydata.org/tutorial/axis_grids.html
If you have many levels of one variable, you can plot it along the columns but “wrap” them so that they span multiple rows. When doing this,
you cannot use a row variable.
Once you’ve drawn a plot using FacetGrid.map() (which can be called multiple times), you may want to adjust some aspects of the plot. There
are also a number of methods on the FacetGrid object for manipulating the figure at a higher level of abstraction. The most general is
FacetGrid.set() , and there are other more specialized methods like FacetGrid.set_axis_labels() , which respects the fact that interior facets
do not have axis labels. For example:
with sns.axes_style("white"):
g = sns.FacetGrid(tips, row="sex", col="smoker", margin_titles=True, height=2.5)
g.map(sns.scatterplot, "total_bill", "tip", color="#334488")
g.set_axis_labels("Total bill (US Dollars)", "Tip")
g.set(xticks=[10, 30, 50], yticks=[2, 6, 10])
g.figure.subplots_adjust(wspace=.02, hspace=.02)
For even more customization, you can work directly with the underling matplotlib Figure and Axes objects, which are stored as member
attributes at figure and axes_dict , respectively. When making a figure without row or column faceting, you can also use the ax attribute to
4 of 12 09/02/2024, 06:10
directly access the single axes.
1. It must plot onto the “currently active” matplotlib Axes . This will be true of functions in the matplotlib.pyplot namespace, and you can
call matplotlib.pyplot.gca() to get a reference to the current Axes if you want to work directly with its methods.
2. It must accept the data that it plots in positional arguments. Internally, FacetGrid will pass a Series of data for each of the named
positional arguments passed to FacetGrid.map() .
3. It must be able to accept color and label keyword arguments, and, ideally, it will do something useful with them. In most cases, it’s
easiest to catch a generic dictionary of **kwargs and pass it along to the underlying plotting function.
Let’s look at minimal example of a function you can plot with. This function will just take a single vector of data for each facet:
If we want to make a bivariate plot, you should write the function so that it accepts the x-axis variable first and the y-axis variable second:
Building structured multi-plot grids — seaborn 0.13.2 documentation https://seaborn.pydata.org/tutorial/axis_grids.html
Because matplotlib.pyplot.scatter() accepts color and label keyword arguments and does the right thing with them, we can add a hue
facet without any difficulty:
Sometimes, though, you’ll want to map a function that doesn’t work the way you expect with the color and label keyword arguments. In
this case, you’ll want to explicitly catch them and handle them in the logic of your custom function. For example, this approach will allow use to
map matplotlib.pyplot.hexbin() , which otherwise does not play well with the FacetGrid API:
with sns.axes_style("dark"):
g = sns.FacetGrid(tips, hue="time", col="time", height=4)
g.map(hexbin, "total_bill", "tip", extent=[0, 50, 0, 10]);
6 of 12 09/02/2024, 06:10
Plotting pairwise data relationships
PairGrid also allows you to quickly draw a grid of small subplots using the same plot type to visualize data in each. In a PairGrid , each row
and column is assigned to a different variable, so the resulting plot shows each pairwise relationship in the dataset. This style of plot is
sometimes called a “scatterplot matrix”, as this is the most common way to show each relationship, but PairGrid is not limited to scatterplots.
It’s important to understand the differences between a FacetGrid and a PairGrid . In the former, each facet shows the same relationship
conditioned on different levels of other variables. In the latter, each plot shows a different relationship (although the upper and lower triangles
will have mirrored plots). Using PairGrid can give you a very quick, very high-level summary of interesting relationships in your dataset.
The basic usage of the class is very similar to FacetGrid . First you initialize the grid, then you pass plotting function to a map method and it
will be called on each subplot. There is also a companion function, pairplot() that trades off some flexibility for faster plotting.
It’s possible to plot a different function on the diagonal to show the univariate distribution of the variable in each column. Note that the axis
Building structured multi-plot grids — seaborn 0.13.2 documentation https://seaborn.pydata.org/tutorial/axis_grids.html
It’s possible to plot a different function on the diagonal to show the univariate distribution of the variable in each column. Note that the axis
ticks won’t correspond to the count or density axis of this plot, though.
g = sns.PairGrid(iris)
g.map_diag(sns.histplot)
g.map_offdiag(sns.scatterplot)
A very common way to use this plot colors the observations by a separate categorical variable. For example, the iris dataset has four
measurements for each of three different species of iris flowers so you can see how they differ.
g = sns.PairGrid(iris, hue="species")
g.map_diag(sns.histplot)
g.map_offdiag(sns.scatterplot)
g.add_legend()
8 of 12 09/02/2024, 06:10
Building structured multi-plot grids — seaborn 0.13.2 documentation https://seaborn.pydata.org/tutorial/axis_grids.html
By default every numeric column in the dataset is used, but you can focus on particular relationships if you want.
It’s also possible to use a different function in the upper and lower triangles to emphasize different aspects of the relationship.
g = sns.PairGrid(iris)
g.map_upper(sns.scatterplot)
g.map_lower(sns.kdeplot)
g.map_diag(sns.kdeplot, lw=3, legend=False)
9 of 12 09/02/2024, 06:10
Building structured multi-plot grids — seaborn 0.13.2 documentation https://seaborn.pydata.org/tutorial/axis_grids.html
The square grid with identity relationships on the diagonal is actually just a special case, and you can plot with different variables in the rows
and columns.
Of course, the aesthetic attributes are configurable. For instance, you can use a different palette (say, to show an ordering of the hue variable)
and pass keyword arguments into the plotting functions.
10 of 12 09/02/2024, 06:10
Building structured multi-plot grids — seaborn 0.13.2 documentation https://seaborn.pydata.org/tutorial/axis_grids.html
PairGrid is flexible, but to take a quick look at a dataset, it can be easier to use pairplot() . This function uses scatterplots and histograms by
default, although a few other kinds will be added (currently, you can also plot regression plots on the off-diagonals and KDEs on the diagonal).
You can also control the aesthetics of the plot with keyword arguments, and it returns the PairGrid instance for further tweaking.
11 of 12 09/02/2024, 06:10
Building structured multi-plot grids — seaborn 0.13.2 documentation https://seaborn.pydata.org/tutorial/axis_grids.html
12 of 12 09/02/2024, 06:10