How to order facet variable in grouped boxplot by mean difference between groups in ggplot2

In this tutorial, we will learn how to order facet variable in a grouped boxplot by mean difference between groups in each facet plot with ggplot2. We will use Palmer penguin dataset to make a grouped boxplot using facet_wrap() in ggplot2. Our data looks like this. First, let us make a grouped boxplot using facet_wrap().… Continue reading How to order facet variable in grouped boxplot by mean difference between groups in ggplot2

How to Move Facet strip label to the bottom

In this tutorial, we will learn how to move the strip label title text in ggplot2’s facet* functions to the bottom. By default, facet_wrap() creates a box for each strip with a label at the top of the small multiple plot. In this post, we will show how to move the strip label to the… Continue reading How to Move Facet strip label to the bottom

4 Ways to have Plots Side by side in ggplot2

In this post, we will learn how to combine two plots side-by-side using four different approaches. First, we will show how we can use facet_wrap() function in ggplot2, if we are interested in similar plots (small multiples) side by side. Next three approaches are more general, i.e. combining any two plots side by side using… Continue reading 4 Ways to have Plots Side by side in ggplot2

How to add text annotation to heatmap with ggplot2

Customizing annotation to heatmap with ggplot2

In this post, we will see how can we add text annotation to heatmaps made with ggplot2. In ggplot2, we can make simple heatmaps using ggplot2’s geom_raster() and geom_tile(). In this post, we will use geom_text() to add text annotation, i.e. numerical values in the heatmap. We will also see multiple examples of adding color… Continue reading How to add text annotation to heatmap with ggplot2

Exit mobile version