How to Make Horizontal Boxplot with ggplot2 version 3.3.0?

ggplot2 v3.3.0: Horizontal Boxplots

Making a boxplot or barplot horizontally can be useful in a variety of scenarios. In ggplot2, till now the only way to make a plot horizontal is to use flip the axis using coord_flip(). With ggplot2 version 3.3.0, we can easily flip axis and make horizontal boxplot or horizontal barplot without using coord_flip(). Let us… Continue reading How to Make Horizontal Boxplot with ggplot2 version 3.3.0?

How to Color Boxplots with R Colorbrewer Color Palettes?

Coloring Boxplots with RColorBrewer: scale_fill_brewer()

Adding right colors to the plots greatly help convey the main message of the plot. Adding colors manually can be a bit challenging. Color palettes available from RColorBrewer package make it easy add right set of colors to plots made with ggplo2. In this tutorial, we will see examples of adding colors to Boxplots using… Continue reading How to Color Boxplots with R Colorbrewer Color Palettes?

How To Avoid Overlapping Labels in ggplot2?

Dodge Overlapping X-axis Text with guide_axis() in ggplot2 3.3.0

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?

Multiple Line Plots or Time Series Plots with ggplot2 in R

Multiple Line Plots with ggplot2

Line plots or time series plots are helpful to understand the trend over time. In this post we will learn how to make multiple line plots (or time-series plots in the sample plot) in R using ggplot2. Let us load tidyverse the suite of R packages including ggplot2 to make the line plots. We will… Continue reading Multiple Line Plots or Time Series Plots with ggplot2 in R

Exit mobile version