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 … [Read more...] about Area Chart with Altair in Python
Multiple Density Plots and Coloring by Variable with ggplot2
In this tutorial, we will learn how to make multiple density plots in R using ggplot2. Making multiple density plot is useful, when you have quantitative variable and a categorical variable with multiple levels. First, we will start with making multiple overlapping density plots … [Read more...] about Multiple Density Plots and Coloring by Variable with ggplot2
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 … [Read more...] about 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 … [Read more...] about How To Make Grouped Barplots in Python with Seaborn?
How To Make Title Bold in ggplot2?
One of the common failures of making a data visualization is wither not having a title for plot or having a title that is not easy to read. Making the title in bold can help making the visualiation better. In this post, we will learn how to make the title of plot made with ggplot … [Read more...] about How To Make Title Bold in ggplot2?