In this tutorial, we will learn how to add error values as labels on bars in a barplot. Thanks to @charliejhadley's nice tip showing how to add errors on barplot labels using str_glue() function. The main idea behind adding errors to labels is very similar to adding barplot … [Read more...] about How to Add Error Values to Barplot Labels in R with ggplot2
Bump Plot with ggbump
Bump plots are line plots with dots showing the data points. Bump plots can be useful in understanding the change in rank over time. In this tutorial, we will learn how to make bump plots using ggbump package, a ggplot2 extension package. To make a bump plot we will use the … [Read more...] about Bump Plot with ggbump
How to wrap long axis tick labels into multiple lines in ggplot2
In this tutorial, we will learn how to wrap really long axis tick labels into multiple lines in R while making plots with ggplot2. A long axis text labels make harder to understand the plot and ofter it overlaps with the neighboring labels and obscuring the labels. Here we will … [Read more...] about How to wrap long axis tick labels into multiple lines in ggplot2
How to make UMAP plot in R
UMAP, short for "Uniform Manifold Approximation and Projection" is a one of the useful dimensionality reduction techniques like tSNE. UMAP is non-linear dimension reduction technique and often used for visualizing high-dimensional datasets. In this tutorial, we will learn how to … [Read more...] about How to make UMAP plot in R
How to Remove Space between Legend at Bottom and x-axis in ggplot2
In ggplot2, we can adjust the position of legend easily. By default, ggplot2 places the legend on the right side of a plot. Using theme() function, we can move the legend to the bottom of or top of the plot. Sometime, you might like to customize the space between legend at bottom … [Read more...] about How to Remove Space between Legend at Bottom and x-axis in ggplot2