One of the annoying things while making a plot is fine tuning it the way you want. Sometimes ones of such pain points is placing the title on the plot. Till recently, ggplot2 placed title or subtitle such that it aligns with the plotting area. In this post we will learn how to … [Read more...] about How To Adjust Title Position in ggplot2 ?
How To Make Density Plot in Python with Altair?
Density plots are like histogram, but displays density instead of counts. In this post, we will see a simple example of making a density plot in Python using Altair. Let us load Pandas and Altair to make density plot. We will use the tuition dataset from TidyTuesday … [Read more...] about How To Make Density Plot in Python with Altair?
How To Make Boxplots with Text as Points in R using ggplot2?
Boxplots with overlayed data points is a great way visualize multiple distributions. One of the biggest benefits of adding data points over the boxplot is that we can actually see the underlying data instead of just the summary stat level data visualization. Sometimes using text … [Read more...] about How To Make Boxplots with Text as Points in R using ggplot2?
How to Add Vertical Lines By a Variable in Multiple Density Plots with ggplot2
Adding vertical line or lines at mean or median of density plot can help us understand the trend in the data. When you make multiple density plots adding vertical mean/median line for each group in the same color as the density plot is of great help. In this post, we will see … [Read more...] about How to Add Vertical Lines By a Variable in Multiple Density Plots with ggplot2
How To Make Boxplots in base R?
In this post, we will learn how to make simple boxplots using base R function boxplot(). We will use mtcars dataset available readily in R to first make a simple boxplot using boxplot() function in base R. And then we will learn how to customize the boxplot with specifying x and … [Read more...] about How To Make Boxplots in base R?