Rachel Lynne Wilkerson
WRUG February 2, 2017
animate package by Yihui Xie and friendsinstall.packages("animation")brew install imagemagickIn general, unless you plan to transport your final animation, use HTML
Consider a static plot
Write a for loop
library(animation)
saveHTML({
for (i in 1:10) plot(runif(10), ylim = 0:1)
})ggplot example