Skip to content

Fitting long names in boxplot

1 message · Hadley Wickham

#
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