In this tutorial, we will use Seaborn and learn how to make a scatterplot between two quantitative variables with marginal density plots on the sides. We will use Seaborn’s JointGrid() to define the features of the plot and then add scatter plot on top first and then add marginal density plots as marginal. This strategy… Continue reading How to Make Scatterplot with Marginal Density Plots with Seaborn
Category: Seaborn JointGrid
How To Make Scatterplot with marginal boxplots with Seaborn ?
In this post, we will learn how to make a scatterplot with marginal boxplots using Seaborn in Python. To make a scatterplot we will use some of Seaborn’s powerful but not very well known functionalities. More specifically, we will use Seaborn’s JointGrid() to set up the plot features and then add two layers of plots.… Continue reading How To Make Scatterplot with marginal boxplots with Seaborn ?