Skip to content
Prev 138084 / 398506 Next

Fitting long names in boxplot

On Fri, Feb 29, 2008 at 4:40 PM, Alex Reynolds <areynolds at stamlab.org> wrote:
You might try:

library(ggplot2)
qplot(build, time, data=subsetTimeData, geom="boxplot") + coord_flip()

which will automatically allocate enough space for the names.  You can
find out more about ggplot2 at http://had.co.nz/ggplot2.

Hadley