Faceting is a great technique to simplify a complex visualization. Faceting splits a single plot into multiple smaller plots containing subset of data corresponding to a group. This tutorial we will see an example of how to facet a scatter plot with Altair in Python. Let us … [Read more...] about How To Facet a Scatter Plot with Altair?
Scatter Plot Altair
Scatter Plot with Regression Line using Altair in Python
Adding regression line to scatter plot is a great way to understand the relationship between two numeric variables. In this post, we will see an example of using Altair to make a scatter plot with regression line using real world dataset. Let us load the packages we need. … [Read more...] about Scatter Plot with Regression Line using Altair in Python