Matplotlib, one of the powerful Python graphics library, has many way to add colors to a scatter plot and specify legend. Earlier we saw a tutorial, how to add colors to data points in a scatter plot made with Matplotlib's scatter() function. In this tutorial, we will learn how … [Read more...] about How to Add Legend to Scatterplot Colored by a Variable with Matplotlib in Python
Python
Visualizing Missing Data with Seaborn Heatmap and Displot
Understanding the level of missing data in the data set analysis should be one of the first things we all should do while doing data analysis. In this post, we will use Python's Seaborn library to quickly visualize how much data is missing in a data set. One of the ways to … [Read more...] about Visualizing Missing Data with Seaborn Heatmap and Displot
How to Combine Two Seaborn plots with Shared y-axis
In this tutorial, we will see how to join or combine two plots with shared y-axis. As an example, we will make a scatterplot and join with with marginal density plot of the y-axis variable matching the variable colors. Thanks to Seaborn's creator Michael Waskom's wonderful tip on … [Read more...] about How to Combine Two Seaborn plots with Shared y-axis
How To Manually Specify Palette Colors in Seaborn
When we make a plot with Seaborn, say a scatterplot using Seaborn's scatterplot and color the groups of the data using a grouping variable, Seaborn chooses suitable colors automatically. Sometimes you might like to change the default colors to colors of your choice. In this … [Read more...] about How To Manually Specify Palette Colors in Seaborn
How to Customize Titles in Multi-Panel plots with Seaborn?
Multi-panel plots or small multiples are a great way visualize the relationship between two variables with respect ot the values of other variables. Seaborn offers a few different ways to make a multi-panel plots, with FacetGrid is the class behind multi-panel plots in … [Read more...] about How to Customize Titles in Multi-Panel plots with Seaborn?