In this tutorial, we will see how to join or combine two plots with shared y-axis. As an example, we will make a scatterplot and join with with marginal density plot of the y-axis variable matching the variable colors. Thanks to Seaborn's creator Michael Waskom's wonderful tip on … [Read more...] about How to Combine Two Seaborn plots with Shared y-axis
Seaborn
How To Manually Specify Palette Colors in Seaborn
When we make a plot with Seaborn, say a scatterplot using Seaborn's scatterplot and color the groups of the data using a grouping variable, Seaborn chooses suitable colors automatically. Sometimes you might like to change the default colors to colors of your choice. In this … [Read more...] about How To Manually Specify Palette Colors in Seaborn
How to Customize Titles in Multi-Panel plots with Seaborn?
Multi-panel plots or small multiples are a great way visualize the relationship between two variables with respect ot the values of other variables. Seaborn offers a few different ways to make a multi-panel plots, with FacetGrid is the class behind multi-panel plots in … [Read more...] about How to Customize Titles in Multi-Panel plots with Seaborn?
Grouped Boxplot with Jittered Points with Seaborn Python
Grouped boxplots help us visualize the relationship between three variables, two categorical variables and one quantitative variable. When we make a boxplot, it is always a good idea to add the original data points on top of the boxplot, when possible. In this post, we will learn … [Read more...] about Grouped Boxplot with Jittered Points with Seaborn Python
How To Change Edge Color on Seaborn Scatter Plot?
Seaborn's scatterplot function allows us to make compelling scatter plots easily. In this post we will learn how to customize edge color of a scatter plot made with Seaborn. By default, Seaborn's scatter plot function colors the markers edge color to be white. In this post, … [Read more...] about How To Change Edge Color on Seaborn Scatter Plot?