Is it possible in R to create a color key like the one below? (this one comes from the software Grid Analysis and Display System - Grads). There are two fe
I can draw relative frequency histogram in R, using lattice package: a <- runif(100) library(lattice) histogram(a) I want to get the same graph in ggplot.