tab <- with(
subset(d.pizza, driver %in% c("Carpenter", "Miller", "Farmer", "Butcher")),
table(factor(driver), Weekday(date, "dd", stringsAsFactor=TRUE))
)
tab
barplot(tab, beside=FALSE, space=1.2)
ConnLines(tab, beside=FALSE, space=1.2, col="grey50", lwd=1, lty=2)
barplot(tab, beside=FALSE, space=1.2, horiz=TRUE)
ConnLines(tab, beside=FALSE, space=1.2, horiz=TRUE, col="grey50", lwd=1, lty=2)
cols <- Pal("Helsana")[1:4]
b <- barplot(tab, beside=FALSE, horiz=FALSE, col=cols)
ConnLines(tab, beside=FALSE, horiz=FALSE, col="grey50", lwd=1, lty=2)
# set some labels
BarText(tab, b,
labels=Format(tab, zero.form = "", d=0), pos = "mid",
col=(matrix(rep(TextContrastColor(cols), each=ncol(tab)),
nrow=nrow(tab), byrow=FALSE )))
# align to the middle of the bars
barplot(tab, beside=FALSE, space=1.2)
ConnLines(tab, beside=FALSE, space=1.2, col="grey50", lwd=1, lty=2, method="mid")
Run the code above in your browser using DataLab