Created
May 15, 2018 14:25
-
-
Save clauswilke/158cbf1a3d063128501c64814e3dcb28 to your computer and use it in GitHub Desktop.
rotate plot labels
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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