Adding a vertical line on mean or median value of a distribution to its density plot can make understanding the plot easier. In this post, we will first see a simple example of adding mean line to a density plot using ggplot2 in R. And then we will also see an example of adding a … [Read more...] about How To Add Mean Line or Vertical Line to Density Plot with ggplot2?
R
Horizontal Boxplots with ggplot2 in R
Horizontal boxplots are useful when you are making a boxplot multiple groups & you want the group names to be easily readable. And horizontal boxplots can also make it easy see the pattern among the groups quickly. In this post will learn how to make horizontal boxplots with … [Read more...] about Horizontal Boxplots with ggplot2 in R
How To Make Density Plots with ggplot2 in R?
In this tutorial, we will see how to make density plots with ggplot2 in R. We will start with an example of making a basic density plot with ggplot2 and see multiple examples of making the density plots better. Let us load tidyverse, a suite R packages from RStudio and also … [Read more...] about How To Make Density Plots with ggplot2 in R?
How to Combine Multiple ggplot2 Plots? Use Patchwork
When you have made great data visualizations often you have to combine the plots into a single figure. Thomas Lin Pedersen from RStudio has made a fantastic R package to combine the plots. In his words, The goal of patchwork is to make it ridiculously simple to combine … [Read more...] about How to Combine Multiple ggplot2 Plots? Use Patchwork
5 tips to make better histograms with ggplot2 in R
Histograms are of great use to visualize a uni-variate distribution. As ggplot2 defines, histograms "Visualise the distribution of a single continuous variable by dividing the x axis into bins and counting the number of observations in each bin." ggplot2's geom_histogram() … [Read more...] about 5 tips to make better histograms with ggplot2 in R