library(ggplot2)

Counts

p <- ggplot(diamonds, aes(cut, color))
p <- p + geom_count()
print(p)