I wanted to stagger my x-axis labels in ggplot2
. Amazingly, the thing I tried worked (thanks to @Hadley and the consistent grammar!).
c <- ggplot(mtcars, aes(factor(cyl)))
c <- c + geom_bar()
c + theme(axis.text.x = element_text(vjust = c(0, 0.1, 0.2)))
But it seems that as a consequence, the amount of vertical space dedicated to the margin became unnecessarily large. Any tips on getting this back down to size?