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 … [Read more...] about How To Make Bubble plot with Altair in Python?
Introduction to Color Palettes in R with RColorBrewer
RColorBrewer is a R package based on colorbrewer2.org that offers a variety of color palettes to use while making plots in R. Choosing which colors to use while making data visualization is not an easy task. In this tutorial we will see the basics of color palettes available … [Read more...] about Introduction to Color Palettes in R with RColorBrewer
How To Color a Scatter Plot by a Variable in Altair?
In this tutorial, we will learn how to color data points in a scatter plot by a variable using Altair in Python. Let us load Altair and Pandas. We will use gapminder data to make scatter plot first and color by a variable using Altair. To make a simple scatter … [Read more...] about How To Color a Scatter Plot by a Variable in Altair?
How to Make Heatmaps with Seaborn in Python?
Heatmaps are a way of visualizing the raw data as it is. Heatmaps visualzises a matrix/table/dataframe of numbers as colors. We can easily make a heatmap of a dataframe of numbers using Seaborn. In this tutorial, we will learn how to make a heatmap using Seaborn's heatmap … [Read more...] about How to Make Heatmaps with Seaborn in Python?
Multiple Density Plots with Pandas in Python
Often you may have data belonging to multiple groups. Visualizing them as multiple density plot is a great way to understand the similarities and differences between the groups. In this tutorial, we will learn how to make multi-density plot using Pandas in Python. We will use … [Read more...] about Multiple Density Plots with Pandas in Python