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 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 Adjust Positions of Axis Labels in Matplotlib?

How To Adjust Axes Label Position in Matplotlib?

In this post, we will learn how to adjust positions of x-axis and y-axis labels in Matplotlib in Python. By default, plots with matplotlib places the axis labels in the middle. With matplotlib version 3.3.0, the matplotlib functions set_xlabel and set_ylabel have a new parameter “loc” that can help adjust the positions of axis labels.… Continue reading How To Adjust Positions of Axis Labels in Matplotlib?

How to Show Mean on Boxplot using Seaborn in Python?

Customize Mean Mark in Boxplot: Seaborn & Matplotlib

Boxplots show five summary statistics, including median, derived from data to show distribution of numerical data corresponding categorical variables. Sometimes, you might want to highlight the mean values in addition to the five statistics of boxplot. In this post we will see how to show mean mark on boxplot using Seaborn in Python. We will… Continue reading How to Show Mean on Boxplot using Seaborn in Python?

How to Annotate Bars in Grouped Barplot in Python?

Annotating Bars in Grouped Barplot Seaborn and Matplotlib

In this post we will learn examples of adding text, annotating bars in grouped barplot using matplotlib. We will first see how to make grouped barplots using Seaborn’s barplot() function and then use Matplotlib to add annotations to the grouped bars. The way to add annotation to grouped barplot is very similar to the way… Continue reading How to Annotate Bars in Grouped Barplot in Python?

Exit mobile version