For example, from the [docs](http://docs.ggplot2.org/current/scale_discrete.html) ``` d <- ggplot(subset(diamonds, carat > 1), aes(cut, clarity)) + geom_jitter() d + scale_x_discrete(limits=c("Fair","Ideal")) ```  In the [0.9.3.1 docs](http://docs.ggplot2.org/0.9.3.1/scale_discrete.html), it looks like this: 