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 use ggplot2… Continue reading How To Adjust Title Position in ggplot2 ?
Category: ggplot2
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 labels instead of data points can be helpful as it… Continue reading How To Make Boxplots with Text as Points in R using ggplot2?
How To Make US State and County Level Maps in R?
Creating maps is one of the most powerful ways to visualize data, and R’s ggplot2 package makes it surprisingly straightforward. In this tutorial, you’ll learn how to build beautiful and informative US maps from the ground up. We’ll guide you step-by-step through creating both state-level and detailed county-level maps. Then we will see how to… Continue reading How To Make US State and County Level Maps in R?
How To Avoid Overlapping Labels in ggplot2?
A common problem in making plots, say a barplot or boxplot with a number of groups is that, names of the groups on x-axis label often overlap with each other. Till now, one of the solutions to avoid overlapping text x-axis is to swap x and y axis with coord_flip() and make a horizontal barplot… Continue reading How To Avoid Overlapping Labels in ggplot2?
How To Make Barplots with Error bars in ggplot2?
In this post, we will learn how to make a barplot with error bar using ggplot2 in R. Barplot alone is useful to display counts for multiple categories. However, often there may be uncertainty around the count values and we could represent as error bar on the barplot. Let us load tidyverse packages. We will… Continue reading How To Make Barplots with Error bars in ggplot2?
