Skip to content

Instantly share code, notes, and snippets.

@clauswilke
Created May 15, 2018 14:25
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save clauswilke/158cbf1a3d063128501c64814e3dcb28 to your computer and use it in GitHub Desktop.
Save clauswilke/158cbf1a3d063128501c64814e3dcb28 to your computer and use it in GitHub Desktop.
rotate plot labels
library(ggplot2) # requires 2.3.0
library(purrr)
make_plot <- function(frame) {
ggplot(mtcars, aes(mpg, hp, color = factor(cyl))) +
geom_point() +
scale_color_brewer(
palette = 2, type = "qual", name = "cyl",
guide = guide_legend(
direction = "horizontal",
label.position = "bottom",
keyheight = grid::unit(5, "pt")
)
) +
theme_bw() +
theme(legend.text = element_text(angle = 8*frame, vjust = 0.5, hjust = 0.5),
legend.title = element_text(angle = 270 - 2*frame),
axis.text.x = element_text(angle = -3*frame),
axis.text.y = element_text(angle = 4*frame),
axis.title.x = element_text(angle = frame),
axis.title.y = element_text(angle = 90 - 2*frame))
}
# function for saving images
plot_save<-function(t = 1200){
# add 50000 to index so images are in the right order (10 comes after 9)
file_path = paste0("plot-", 50000+t, ".png")
ggsave(filename=file_path, width=5, height=4, make_plot(t))
}
# make gif
system("rm plot-5*.png plot.gif")
map(4*(0:89), plot_save)
system("magick convert -delay 1 -loop 0 *.png plot.gif")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment