ECDF plot, aka, Empirical Cumulative Density Function plot is one of the ways to visualize one or more distributions. In this post, we will learn how to make ECDF plot using Seaborn in Python. Till recently, we have to make ECDF plot from scratch and there was no out of the … [Read more...] about How to Make ECDF plot with Seaborn in Python?
Python
How to Make Boxplot with Jittered Data Points using Altair in Python
In this post, we will learn how to make boxplot with data points using Altair. Latest version of Altair supports making simple boxplots. However, current version of Altair does not support adding adding jittered data points on top of boxplots. Thanks to Justin Bois from Caltech, … [Read more...] about How to Make Boxplot with Jittered Data Points using Altair in Python
8 Tips to Make Better Boxplots with Altair in Python
In this tutorial, we will learn how to make boxplot using Altair in Python. We will start with making a simple boxplot and show how we can make the boxplot better with useful Altair tips. Let us load Altair and check its version We will use Palmer Penguins dataset to … [Read more...] about 8 Tips to Make Better Boxplots with Altair in Python
How To Make Violinpot with data points in Seaborn?
Violinplots are combination of boxplot and density plots. In this tutorial we will learn how to make Violinplots with Seaborn in Python and also show actual data points with violin plot. We will use Penguin data set to learn to make violinplots with data points using … [Read more...] about How To Make Violinpot with data points in Seaborn?
Seaborn set_context() to adjust size of plot labels and lines
One of the challenges in making data visualization is making all aspects of a plot clearly visible. Often, you might see where the axis labels, tick labels are too small and not legible at all. Challenge is that the required sizes of plot aspects like labels, points, lines are … [Read more...] about Seaborn set_context() to adjust size of plot labels and lines