Seaborn
Plotting with categorical data - seaborn 0.11.2 documentation
In the relational plot tutorial we saw how to use different visual representations to show the relationship between multiple variables in a dataset. In the examples, we focused on cases where the main relationship was between two numerical variables.

The Ultimate Python Seaborn Tutorial: Gotta Catch 'Em All
In this step-by-step Seaborn tutorial, you'll learn how to use one of Python's most convenient libraries for data visualization. For those who've tinkered with Matplotlib before, you may have wondered, "why does it take me 10 lines of code just to make a decent-looking histogram?"
https://elitedatascience.com/python-seaborn-tutorial
Syntax
import seaborn as sns
sns.set(style='darkgrid') # this will change the entire notebook
plt.figure(figsize=(12, 4))
# can edit the figure by putting this at the start, of the code block