In this post, we will see how to make simple area chart with Altair in Python. Area chart displays a quantitative variable like a line plot or density plot but coloring the area under the curve. In Altair, we can make area chart with mark_area() function. Let us first load Altair and the needed packages.… Continue reading Area Chart with Altair in Python
Category: Python
How To Make Bubble Plot in Python with Matplotlib?
In this post, we will learn how to make bubbleplots using Matplotlib in Python. Bubble plot is a scatterplot, but with size of the data point on the scatter plot is coded by another variable. Basically, if the third variable is larger you get a bigger circle filled with a color i.e. bigger bubble and… Continue reading How To Make Bubble Plot in Python with Matplotlib?
How To Make Grouped Barplots in Python with Seaborn?
In this tutorial, we will see examples of how to make grouped barplots using Seaborn in Python. Barcharts are great when you have two variables one is numerical and the other is a categorical variable. A barplot can reveal the relationship between them. A Grouped barplot is useful when you have an additional categorical variable.… Continue reading How To Make Grouped Barplots in Python with Seaborn?
Grouped Boxplots in Python with Seaborn
In this post, we will learn how to make grouped boxplots in Python using Seaborn’s boxplot function. Grouped boxplots are a great way to visualize when you have three variables, where one of them is a numerical variable and the other two are categorical variables. Let us load the packages needed to make grouped boxplot… Continue reading Grouped Boxplots in Python with Seaborn
How To Make Bubble plot with Altair in Python?
Bubble plot is a data visualization technique that shows bubbles i.e. circles on a two dimensional plot. Bubble plot is simply a scatter plot where we plot bubbles/circles instead of points in a scatter plot. Bubble chart is useful when you have three variables and the size of the bubbles show the third variable. In… Continue reading How To Make Bubble plot with Altair in Python?