R: how to fill boxplot depending on value
Advertisements I have a little problem. I would like to sort boxplot colors properly. For lower values cooler colors, for higher – warmer. There is wrong sorting in my example. Is it any ideas how to do this? library(ggplot2) # data set.seed(123) data <- data.frame(tavg = sample(-30:30, 2000, replace = TRUE), attendance = sample(100:30000, 1000, replace… Read More R: how to fill boxplot depending on value