How to add intermediate space in nested boxes ggplot2

I would like to add margin space between chart groups using the method stats_summary

.

Here is a small example of my problem

library(ggplot2)
library(reshape2)
data1 <- (lapply(letters[1:5], function(l1) return(matrix(rt(5*3, 1), nrow = 5, ncol = 3, dimnames = list(cat2=letters[6:10], cat3=letters[11:13])))))
names(data1) <- letters[1:5]
data2 <- melt(data1)

customstats <- function(x) {
  xs <- sort(x)
  return(c(ymin=min(x), lower= mean(xs[xs < mean(x)]), middle = mean(x) , upper = mean(xs[xs > mean(x)]), ymax=max(x)))
}

ggplot(data2, aes(x=cat2, y=value, fill=cat3), width=2) + 
  stat_summary(fun.data = customstats, geom = "boxplot", 
    alpha = 0.5, position = position_dodge(1), mapping = aes(fill=cat3))

      

The result is the following image. boxplots

I would like to get visual separation for each "cat2" and add "space" between the group of boxes (I got access to use stats_summary

since I have custom stats). How can i do this?

+3


source to share


1 answer


I fixed a similar issue in an ugly (but effective for me) way by creating a dataframe with the same construction parameters as my original data, but with the x (or y) position, positioned or accounted for that it is between two points I want split and skip values ​​for y (or x). For your problem, I added the following code and got a spatially clustered image.

library(plyr)

empties <- data.frame(cat2_orig=unique(data2$cat2)[-length(unique(data2$cat2))])
#no extra space needed between last cluster and edge of plot
empties$cat2 <- paste0(empties$cat2_orig,empties$cat2_orig)
empties$value <- NA


data2_space <- rbind.fill(data2,empties)

ggplot(data2_space, aes(x=cat2, y=value, fill=cat3), width=2) + 
  stat_summary(fun.data = customstats, geom = "boxplot", 
           alpha = 0.5, position = position_dodge(1), mapping =     aes(fill=cat3)) +
#remove tickmarks for non-interesting points on x-axis
  scale_x_discrete(breaks=unique(data2$cat2))

      



Before and after

enter image description here

+3


source







All Articles