require(envalysis) require(ggplot2) p <- ggplot(mtcars) + geom_point(aes(x = wt, y = mpg, colour=factor(gear))) + facet_wrap( ~ am) p
p + theme_publish()