How To Make Grouped Barplots in Python with Seaborn?

Grouped Barplot with Seaborn

In this tutorial, we will see examples of how to make grouped barplots using Seaborn in Python. Barcharts are great when you have two variables one is numerical and the other is a categorical variable. A barplot can reveal the relationship between them. A Grouped barplot is useful when you have an additional categorical variable.… Continue reading How To Make Grouped Barplots in Python with Seaborn?

Grouped Boxplots in Python with Seaborn

Grouped Boxplot in Python with Seaborn

In this post, we will learn how to make grouped boxplots in Python using Seaborn’s boxplot function. Grouped boxplots are a great way to visualize when you have three variables, where one of them is a numerical variable and the other two are categorical variables. Let us load the packages needed to make grouped boxplot… Continue reading Grouped Boxplots in Python with Seaborn

How to Make Heatmaps with Seaborn in Python?

Heatmap with Seaborn using coolwarm colormap

Heatmaps are a way of visualizing the raw data as it is. Heatmaps visualzises a matrix/table/dataframe of numbers as colors. We can easily make a heatmap of a dataframe of numbers using Seaborn. In this tutorial, we will learn how to make a heatmap using Seaborn’s heatmap function. When you are working to making a… Continue reading How to Make Heatmaps with Seaborn in Python?

How to Add Outline/Edge Color to Histogram in Seaborn?

Histogram with edge line: Seaborn

In this tutorial, we will see an example of adding edge color/edge line to histograms made with Seaborn. Let us load the packages needed to make histogram with outlines using Seaborn. We will use Seattle weather data from vega_datasets to make histograms. Let us first make a histogram with Seaborn’s distplot. By default, distplot() fills… Continue reading How to Add Outline/Edge Color to Histogram in Seaborn?

Histograms with Seaborn in Python

Change Histogram Color with Seaborn

Histograms are a type of barchart, that visualizes how a quantitative variable is distributed. With the right histogram we can quickly learn about the variable. For example, we can learn what is the most common value, what is the minimum and maximum and what is the spread of the variable by looking at the histogram.… Continue reading Histograms with Seaborn in Python

Exit mobile version