Module # 13
Your assignment: Create a simple animation and discussion the result in your blog posting. Reference to Yihui Xie's and animation R package website, click here . A note, his package now available via CRAM repository and not GitHub. For Bryan's blog posting on Animation in R, click here A note: In order to post your work on blog, you need to save your animation. The code for saving the image you created in R is as follow: saveGIF({ for (i in 1:10) plot(runif(10), ylim = 0:1) }) Working on this assignment was incredibly interesting. Before this module, I had no idea we could create animations through R studio. Below is an animation for the code that was given for this assignment. > saveGIF({ + for (i in 1:10) plot(runif(10), ylim = 0:1) + }) Now I will focus on my rendition of an animation through R. The first animation I created was a relatively simple one where I demonstrated an investment account after a cons...