How To Draw a Rectangle on a Plot in Matplotlib?

Add Rectangle with text annotation Matplotlib

When you make data visualization one might want to highlight a specific region of the plot by adding some annotation. In this post, we will learn how to add rectangle on top of a plot made with matplotlib in Python. We will first add a simple rectangle with specific color and then learn how to… Continue reading How To Draw a Rectangle on a Plot in Matplotlib?

How To Make Lower Triangular Heatmap with Python?

Lower Triangular Heatmap with color palette in Python

Heatmaps are a great way to quickly visualize the actual data coded as colors. Heatmaps of correlation matrix is useful to understand the relationship between multiple features or variable. However, since the correlation matrix is symmetric, it is more useful to make heatmap of upper or lower triangular part of correlation matrix as having both… Continue reading How To Make Lower Triangular Heatmap with Python?

How To Color Scatterplot by a variable in Matplotlib?

Coloring Scatterplot with Variable using Matplotlib

Scatterplots between two numerical variables are great to see the relationship between them. Adding colors to the data points based on the third categorical variable is often useful in understanding the relationship among the three variables. In this post, we will learn how to color data points in a scatterplot by a third categorical variable… Continue reading How To Color Scatterplot by a variable in Matplotlib?

How to Make Scatterplot with Marginal Density Plots with Seaborn

Scatterplot with marginal densityplot with Seaborn

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

How To Make Scatterplot with marginal boxplots with Seaborn ?

Scatterplot with marginal boxplot 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 ?

Exit mobile version