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 … [Read more...] about How To Add Regression Line Per Group with Seaborn in Python?
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 … [Read more...] about How To Make Bubble Plot with Seaborn Scatterplot in Python?
How To Place Legend Outside the Plot with Seaborn in Python?
While making plots with legend, like scatterplot, Seaborn has a nice feature that finds a suitable place for legend and puts it automatically inside the plot. This greatly helps in utilizing plotting area efficiently. However, sometimes you might want the legend outside the plot. … [Read more...] about How To Place Legend Outside the Plot with Seaborn in Python?
How To Make Scatter Plots with Seaborn scatterplot in Python?
Scatter plots are great way to visualize two quantitative variables and their relationships. Often we can add additional variables on the scatter plot by using color, shape and size of the data points. With Seaborn in Python, we can make scatter plots in multiple ways, like … [Read more...] about How To Make Scatter Plots with Seaborn scatterplot in Python?
How to Show Mean on Boxplot using Seaborn in Python?
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 … [Read more...] about How to Show Mean on Boxplot using Seaborn in Python?