#title gif로 여러 그림 합치기 1. imagemagick을 다운로드 한다. ([http://download.cnet.com/ImageMagick-64-bit/3000-2192_4-75213102.html 여기]) 2. 다음과 같이 코딩한다. {{{ library(animation) setwd("c:\\plot\\") ani.options( convert = shQuote('C:\\Program Files\\ImageMagick-6.8.6-Q16\\convert.exe') ) saveGIF( { for (i in 1:10) plot(runif(10), ylim = 0:1) }, movie.name = "test.gif", interval = 0.2, ani.width = 300, ani.height = 300, outdir = getwd() ) }}}