Creating animation in R Notebooks
David The reference helped thank you. The "gifski" library corrected the issue Jeff -----Original Message----- From: David Winsemius <dwinsemius at comcast.net> Sent: Friday, September 18, 2020 1:19 PM To: reichmanj at sbcglobal.net; r-help at r-project.org Subject: Re: [R] Creating animation in R Notebooks https://bookdown.org/yihui/rmarkdown-cookbook/animation.html
On 9/18/20 8:26 AM, Jeff Reichman wrote:
r-help forum
Has anyone created an animations within a R-Notebook. I'm trying to
create an animation within a R -Notebook and while my code works
outside of a notebook (Console) but inside the R-Notebook framework I
only get a list of the *.png files. Any suggestions?
path.animate.plot <- mymap.paths +
transition_reveal(along = date) +
labs(title = 'Date: {frame_along}') # Add a label on top to say
what date each frame is
animate(path.animate.plot,
fps = 3, # frames per second
nframes = 200) # default is 100 frames
[1] "./gganim_plot0001.png" "./gganim_plot0002.png"
"./gganim_plot0003.png" "./gganim_plot0004.png"
[5] "./gganim_plot0005.png" "./gganim_plot0006.png"
"./gganim_plot0007.png" "./gganim_plot0008.png"
[9] "./gganim_plot0009.png" "./gganim_plot0010.png"
"./gganim_plot0011.png" "./gganim_plot0012.png" ..
Jeff Reichman
[[alternative HTML version deleted]]
______________________________________________ R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.