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

Horizontal Boxplots with Points using Seaborn in Python

Horizontal Boxplots with Points using Seaborn

Horizontal boxplots are useful when you have lots of groups with longer names. If you make simple boxplots, the longer names would overlap on each other and make it impossible to read the group names. Horizontal boxplots solve that problem easily. In this post, we will see an example of making horizontal boxplots with data… Continue reading Horizontal Boxplots with Points using Seaborn in Python

Sort Boxplot by Mean with Seaborn in Python

Sort Boxplot by Mean with Seaborn Python

Sorting a boxplot by mean or median values of each group is more helpful, when you are making a boxplot with multiple groups. In this post we will see an example of starting with a boxplot that is unordered and we will use Pandas and Seaborn to sort the boxplot by mean (and median). First,… Continue reading Sort Boxplot by Mean with Seaborn in Python

How to Make Boxplots with Data Points using Seaborn in Python

Colored Boxplot with Bigger Points Using Seaborn

Boxplot with data points on top of it is often better visualization technique than the boxplots alone. This is mainly because, boxplot with data points actually shows the data underlying the boxplots, while the boxplot alone just shows the summary statistics. Always remember, Anscombe’s quartet, while using only summary statitics. In this tutorial, we will… Continue reading How to Make Boxplots with Data Points using Seaborn in Python

Exit mobile version