Skip to content

Instantly share code, notes, and snippets.

@mooreryan
Created May 16, 2019 02:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mooreryan/eff611d89b7214c80924e13d1a4aed1c to your computer and use it in GitHub Desktop.
Save mooreryan/eff611d89b7214c80924e13d1a4aed1c to your computer and use it in GitHub Desktop.
Blog -- Rotating axis labels in R
## Set the random seed so your data will be the same as mine.
set.seed(1234)
dat <- list("Cool dataset one" = rnorm(100, 0),
"Cool dataset two" = rnorm(100, 4),
"Another long name" = rnorm(100, 5),
"Really really long" = rnorm(100, 4))
boxplot(dat)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment