In this step-by-step Python 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?”

Well, if you’re looking for a simpler way to plot attractive charts, then you’ll love Seaborn. We’ll walk you through everything you need to know to get started, and we’ll use a fun Pokémon dataset (which you can download below).

Introduction to Seaborn

Seaborn provides a high-level interface to Matplotlib, a powerful but sometimes unwieldy Python visualization library.

On Seaborn’s official website, they state:

If matplotlib “tries to make easy things easy and hard things possible”, seaborn tries to make a well-defined set of hard things easy too.

We’ve found this to be a pretty good summary of Seaborn’s strengths. In practice, the “well-defined set of hard things” includes:

  • Using default themes that are aesthetically pleasing.
  • Setting custom color palettes.
  • Making attractive statistical plots.
  • Easily and flexibly displaying distributions.
  • Visualizing information from matrices and DataFrames.

Those last three points are why Seaborn is our tool of choice for Exploratory Analysis. It makes it very easy to “get to know” your data quickly and efficiently.

However, Seaborn is a complement, not a substitute, for Matplotlib. There are some tweaks that still require Matplotlib, and we’ll cover how to do that as well.

How to Learn Seaborn, the Self-Starter Way:

While Seaborn simplifies data visualization in Python, it still has many features. Therefore, the best way to learn Seaborn is to learn by doing.

  1. First, understand the basics and paradigms of the library. Each library approaches data visualization differently, so it’s important to understand how Seaborn “thinks about” the problem.
  2. Then, fire up a dataset for practice. Learning in context is the best way to master a new skill quickly.
  3. Finally, refer to galleries to spark ideas and documentation to customize your charts. Since you’ve already learned the library’s paradigms and had some hands-on practice, you’ll easily find what you need.

This process will give you intuition about what you can do with Seaborn, leaving documentation to serve as further guidance. This is the fastest way to go from zero to proficient.

A quick tip before we begin:

We tried to make this Python Seaborn tutorial as streamlined as possible, which means we won’t go into too much detail for any one topic. It’s helpful to have the Seaborn documentation open beside you, in case you want to learn more about a feature.

Seaborn Tutorial Contents

Instead of just showing you how to make a bunch of plots, we’re going to walk through the most important paradigms of the Seaborn library. Along the way, we’ll illustrate each concept with examples.

Here are the steps we’ll cover in this tutorial:

  1. Installing Seaborn
  2. Importing Libraries and Dataset
  3. Seaborn’s Plotting Functions
    • Scatter Plot
  4. Customizing with Matplotlib
  5. The Role of Pandas
    • Box Plot
  6. Seaborn Themes
    • Violin Plot
  7. Color Palettes
    • Swarm Plot
  8. Overlaying Plots
  9. Putting It All Together
  10. Pokédex (Mini-Gallery)
    • Heatmap
    • Histogram
    • Bar Plot
    • CatPlot (Categorical Plot)
    • Density Plot
    • Joint Distribution Plot

Step 1: Installing Seaborn

First, things first: Let’s. Get. Pumped. Up!

(Yes… We totally looped that while writing this tutorial…)

Next, make sure you have the following installed on your computer:

  • Python 3+
  • Pandas
  • Matplotlib
  • Seaborn
  • Jupyter Notebook (optional, but recommended)

We strongly recommend installing the Anaconda Distribution, which comes with all of those packages. Simply follow the instructions on that download page.

Once you have Anaconda installed, simply start Jupyter (either through the command line or the Navigator app) and open a new notebook:

Jupyter New Notebook

Step 2: Importing Libraries and Dataset

Let’s start by importing Pandas, which is a great library for managing relational (i.e. table-format) datasets:

Next, we’ll import Matplotlib, which will help us customize our plots further.

  • Tip: In Jupyter Notebook, you can also include %matplotlib inline to display your plots inside your notebook.

Then, we’ll import the Seaborn library, which is the star of today’s show.

Now we’re ready to import our dataset.

  • Tip: we gave each of our imported libraries an alias. Later, we can invoke Pandas with pd, Matplotlib with plt, and Seaborn with sns.

Today, we’ll be using a cool Pokémon dataset (first generation). Here’s the free download:

Once you’ve downloaded the CSV file, you can import it with Pandas.

  • Tip: The argument index_col=0 simply means we’ll treat the first column of the dataset as the ID column. The encoding= argument specifies the codec for the file.

Here’s what the dataset looks like:

As you can see, we have combat stats data for the original 151 (a.k.a “Gen. 1”) Pokémon.

Step 3: Seaborn’s Plotting Functions

One of Seaborn’s greatest strengths is its diversity of plotting functions. For instance, making a scatter plot is just one line of code using the lmplot() function.

There are two ways you can do so.

  • The first way (recommended) is to pass your DataFrame to the data= argument, while passing column names to the axes arguments, x= and y=.
  • The second way is to directly pass in Series of data to the axes arguments.

For example, let’s compare the Attack and Defense stats for our Pokémon:

Seaborn Default Scattershot

*Side Note: If your plot looks different (e.g. has a white background), it’s simply due to your Seaborn package using a different theme/style. See Step 6: Seaborn Themes to learn how to change it.

By the way, Seaborn doesn’t have a dedicated scatter plot function, which is why you see a diagonal line. We actually used Seaborn’s function for fitting and plotting a regression line.

Thankfully, each plotting function has several useful options that you can set. Here’s how we can tweak the lmplot():

  • First, we’ll set fit_reg=False to remove the regression line, since we only want a scatter plot.
  • Then, we’ll set hue='Stage' to color our points by the Pokémon’s evolution stage. This hue argument is very useful because it allows you to express a third dimension of information using color.
Seaborn Scatterplot with Hue

Looking better, but we can improve this scatter plot further. For example, perhaps we find the plot a bit cramped, and wish to expand our axes limits. Let’s see how we can do that…

Step 4: Customizing with Matplotlib

Even though this is a Python Seaborn tutorial, we sometimes need to get closer to the underlying plotting logic. Remember, Seaborn is a high-level interface to Matplotlib. Seaborn will get you most of the way there, but you’ll sometimes need to bring in Matplotlib.

Setting your axes limits is one of those times, but the process is pretty simple:

  1. First, invoke your Seaborn plotting function as normal.
  2. Then, invoke Matplotlib’s customization functions. In this case, we’ll use its ylim() and xlim() functions.

Here’s our new scatter plot with expanded axes limits:

Customizing Seaborn Axes Limits

For more information on Matplotlib’s customization functions, check out its documentation.

Step 5: The Role of Pandas

Even though this is a Seaborn tutorial, Pandas actually plays a very important role. You see, Seaborn’s plotting functions benefit from a base DataFrame that’s reasonably formatted.

For example, let’s say we wanted to make a box plot for our Pokémon’s combat stats (we’ll also run the code plt.figure(figsize=(9,6)) to make the plot larger and more legible):

Seaborn Default Boxplot

Well, that’s a reasonable start, but there are some columns we’d probably like to remove:

  • We can remove the Total since we have individual stats.
  • We can remove the Stage and Legendary columns because they aren’t combat stats.

In turns out that this isn’t easy to do within Seaborn alone. Instead, it’s much simpler to pre-format your DataFrame.

Let’s create a new DataFrame called stats_df that only keeps the stats columns:

Seaborn Boxplot with Preprocessed DataFrame

It’s outside the scope of this tutorial to dive into Pandas, but here’s a handy Pandas cheat sheet.

Step 6: Seaborn Themes

No Python Seaborn tutorial would be complete without touching on Seaborn’s styling themes. A huge advantage of Seaborn is that it comes with decent styles right out of the box. There are five preset themes, and the default one is called ‘darkgrid’.

Next, we’ll change the theme to ‘whitegrid’ while making a violin plot.

  • Violin plots are useful alternatives to box plots.
  • They show the distribution (through the thickness of the violin) instead of only the summary statistics.

For example, we can visualize the distribution of Attack by Pokémon’s primary type:

Seaborn Violin Plot

As you can see, Dragon types tend to have higher Attack stats than Ghost types, but they also have greater variance.

Now, Pokémon fans might find something quite jarring about that plot: The colors are nonsensical. Why is the Grass type colored pink or the Water type colored orange? We must fix this!

Step 7: Color Palettes

Fortunately, Seaborn allows us to set custom color palettes. We can simply create an ordered Python list of color hex values.

Let’s use Bulbapedia to help us create a new color palette:

Wonderful. Now we can simply use the palette= argument to recolor our chart.

Seaborn Custom Color Palette

Much better!

Violin plots are great for visualizing distributions. However, since we only have 151 Pokémon in our dataset, we may want to simply display each point.

That’s where the swarm plot comes in. This visualization will show each point, while “stacking” those with similar values:

Seaborn Swarm Plot

That’s handy, but can’t we combine our swarm plot and the violin plot? After all, they display similar information, right?

The answer is yes:

Step 8: Overlaying Plots

It’s pretty straightforward to overlay plots using Seaborn, and it works the same way as with Matplotlib. Here’s what we’ll do:

  1. First, we’ll make our figure larger using Matplotlib.
  2. Then, we’ll plot the violin plot. However, we’ll set inner=None to remove the bars inside the violins.
  3. Next, we’ll plot the swarm plot. This time, we’ll make the points black so they pop out more.
  4. Finally, we’ll set a title using Matplotlib.
Overlaid Swarm and Violin Plots

Awesome, now we have a pretty chart that tells us how Attack values are distributed across different Pokémon types. But what it we want to see all of the other stats as well?

Well, we could certainly repeat that chart for each stat. But we can also combine the information into one chart… we just have to do some data wrangling with Pandas beforehand.

Step 9: Putting It All Together

Let’s conclude our Python Seaborn tutorial by bringing together everything we’ve covered to display all information elegantly in one plot.

First, here’s a reminder of our data format:

Pokemon Stats DF Head

As you can see, all of our stats are in separate columns. Instead, we want to “melt” them into one column.

To do so, we’ll use Pandas’s melt() function. It takes 3 arguments:

  • First, the DataFrame to melt.
  • Second, ID variables to keep (Pandas will melt all of the other ones).
  • Finally, a name for the new, melted variable.

Here’s the output:

Melted DataFrame

All 6 of the stat columns have been “melted” into one, and the new Stat column indicates the original stat (HP, Attack, Defense, Sp. Attack, Sp. Defense, or Speed). For example, it’s hard to see here, but Bulbasaur now has 6 rows of data.

In fact, if you print the shape of these two DataFrames…

…you’ll find that melted_df has 6 times the number of rows as stats_df.

Now we can make a swarm plot with melted_df.

  • But this time, we’re going to set x='Stat' and y='value' so our swarms are separated by stat.
  • Then, we’ll set hue='Type 1' to color our points by the Pokémon type.
Swarmplot with Melted DataFrame

Finally, let’s make a few final tweaks for a more readable chart:

  1. Enlarge the plot.
  2. Separate points by hue using the argument dodge=True .
  3. Use our custom Pokemon color palette.
  4. Adjust the y-axis limits to end at 0.
  5. Place the legend to the right.
Final Seaborn Swarmplot

There we go!

*Side Note: If you get a warning like “UserWarning: 32.1% of the points cannot be placed…” it’s not a big deal for now. It’s simply telling you that Seaborn could not fit all of the points due to the plot size being too small. You can fix it either by making the points smaller or by increasing the plot dimensions.

Step 10: Pokédex (Mini-Gallery)

We’re going to conclude this tutorial with a few quick-fire data visualizations, just to give you a sense of what’s possible with Seaborn.

10.1 – Heatmap

Heatmaps help you visualize matrix-like data.

Seaborn Heatmap

10.2 – Histogram

Histograms allow you to plot the distributions of numeric variables.

10.3 – Bar Plot

Bar plots help you visualize the distributions of categorical variables.

Seaborn Bar Plot Countplot Function

10.4 – CatPlot (Categorical Plot)

CatPlots make it easy to separate plots by categorical classes.

Seaborn Categorical Plot (CatPlot)

10.5 – Density Plot

Density plots display the distribution between two variables.

  • Tip: Consider overlaying this with a scatter plot.

10.6 – Joint Distribution Plot

Joint distribution plots combine information from scatter plots and histograms to give you detailed information for bi-variate distributions.

Seaborn Joint Distribution Plot

Congratulations… you’ve made it to the end of this Python Seaborn tutorial!

We’ve just concluded a tour of key Seaborn paradigms and showed you many examples along the way. Feel free to use this page along with the official Seaborn gallery as references for your projects going forward.