I'm trying to show the worst design choices on the plots. One of the wasting ink is the potentially distracting effects that people use if the shadow effect is bars. I would like to do ggplot2 . The main one, although I had to make the first translucent layer of bars a little higher and moved to the right. I can get a little higher, but not a little to the right:
dat <- data_frame(
School =c("Franklin", "Washington", "Jefferson", "Adams", "Madison", "Monroe"),
sch = seq_along(School),
count = sort(c(13, 17, 12, 14, 3, 22), TRUE),
Percent = 100*round(count/sum(count), 2)
)
dat[["School"]] <- factor(dat[["School"]], levels = c("Franklin",
"Washington", "Jefferson", "Adams", "Madison", "Monroe"))
ggplot(dat) +
geom_bar(aes(x = School, weight=Percent + .5), alpha=.1, width = .6) +
geom_bar(aes(x = School, weight=Percent, fill = School), width = .6) +
theme_bw()

This attempt gives the following warning and the transparent layer is ignored (which is reasonable):
ggplot(dat) +
geom_bar(aes(x = School + .2, weight=Percent + .5), alpha=.1, width = .6) +
geom_bar(aes(x = School, weight=Percent, fill = School), width = .6) +
theme_bw()
#
#
#