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 Seaborn. At first we will see how to make… Continue reading How To Make Violinpot with data points in Seaborn?
Tag: 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 not easy to set for different… Continue reading Seaborn set_context() to adjust size of plot labels and lines
How To Add Regression Line Per Group with Seaborn in Python?
In this tutorial, we will learn how to add regression line per group to a scatter plot with Seaborn in Python. Seaborn has multiple functions to make scatter plots between two quantitative variables. For example, we can use lmplot(), regplot(), and scatterplot() functions to make scatter plot with Seaborn. However, they differ in their ability… Continue reading How To Add Regression Line Per Group with Seaborn in Python?
How to Make Grouped Violinplot with Seaborn in Python?
In this tutorial, we will learn how to make group violinplots with Seaborn in Python. In Seaborn, we have atleast two ways to make violinplots using Seaborn in Pyhon. First is to use violinplot() function and make violinplot. And the second option is to use Seaborn’s catplot() function. In this post, we will start with… Continue reading How to Make Grouped Violinplot with Seaborn in Python?
How To Make Bubble Plot with Seaborn Scatterplot in Python?
Bubble plots are scatter plots with bubbles (color filled circles) instead of data points. Bubbles have different sizes based on another variable in the data. Also bubbles can be of different color based on another variable in the dataset. Let us load the libraries needed. We will use the fantastic new Penguins data, that is… Continue reading How To Make Bubble Plot with Seaborn Scatterplot in Python?