Conditional Multiple Plots
Learn how to use and customize conditional multiple plots in seaborn.
We'll cover the following...
Overview
Conditional multiple plots imply the construction of multiple plots in parallel, where the plotting is based on one or more conditions. We can draw conditional multiple plots using the seaborn library’s FacetGrid
class. It allows us to compare and visualize relationships among data variables along different subsets of the data. There are four seaborn plots, namely relplot()
, displot()
, catplot()
, and lmplot
. These plots, along with their individual visualization properties, also provide faceting options because they’re built on top of seaborn’s FacetGrid
...