search for: savemovi

Displaying 7 results from an estimated 7 matches for "savemovi".

Did you mean: savemovie
2011 Jan 04
0
Package animation update (v2.0-0)
Hi, The animation package 2.0-0 is on CRAN now. This version is a milestone of the animation package. It includes a new function saveHTML() which uses a much more elegant interface and is consistent in syntax with other save*() functions such as saveMovie(), saveSWF() and saveLatex(). Lots of demos have been added to demonstrate the flexibility of this package, e.g. now we can get the snapshots of rgl 3D plots and insert them into LaTeX with a single call to saveLatex(), or even into Sweave documents. There are some funny demos in this version too...
2011 Jan 04
0
Package animation update (v2.0-0)
Hi, The animation package 2.0-0 is on CRAN now. This version is a milestone of the animation package. It includes a new function saveHTML() which uses a much more elegant interface and is consistent in syntax with other save*() functions such as saveMovie(), saveSWF() and saveLatex(). Lots of demos have been added to demonstrate the flexibility of this package, e.g. now we can get the snapshots of rgl 3D plots and insert them into LaTeX with a single call to saveLatex(), or even into Sweave documents. There are some funny demos in this version too...
2011 Jun 15
1
animation error
...yaxt="n",col="blue",lwd=2,xlim=c(0,120)) axis(side=2,at=seq(0,200,by=25),labels=rev(seq(0,200,by=25)),las=1) axis(side=2,at=seq(0,200,by=5),labels=F,tcl=-0.25) text(x=110,y=200,paste("SP ",ts,sep="")) ani.pause() #dev.off() } } saveMovie(plot.ani(),movie.name="concSlug.gif",img.name="ConcProfile",interval=0.15,outdir=getwd()) #Executing: #"C:/Program Files/ImageMagick-6.7.0-Q16/convert.exe" -loop 0 # -delay 15 # C:/Users/emorway/AppData/Local/Temp/2/RtmpwH5TwA/ConcProfile1.png # C:/Users/em...
2011 Jan 10
0
Package animation update 2.0-1
...o('Xmas_card') contributed by Yuan Huang ? ?o demo('flowers') to show how to download images from the Internet ?and create an animation ? ?o a new function pdftk() as a wrapper to call the Pdftk toolkit ?(mainly for compressing PDF graphics output) ? ?o saveLatex(), saveSWF() and saveMovie() can compress the PDF ?graphics using Pdftk (if available) now; if ani.options('ani.type') ?is 'pdf' and the 'pdftk' option is set, these functions will try the ?compression first ? ?o new functions ani.record() and ani.replay() to record and replay ?the animations; they...
2011 Jan 10
0
Package animation update 2.0-1
...o('Xmas_card') contributed by Yuan Huang ? ?o demo('flowers') to show how to download images from the Internet ?and create an animation ? ?o a new function pdftk() as a wrapper to call the Pdftk toolkit ?(mainly for compressing PDF graphics output) ? ?o saveLatex(), saveSWF() and saveMovie() can compress the PDF ?graphics using Pdftk (if available) now; if ani.options('ani.type') ?is 'pdf' and the 'pdftk' option is set, these functions will try the ?compression first ? ?o new functions ani.record() and ani.replay() to record and replay ?the animations; they...
2012 Sep 11
1
Animation Problem
...ot;data.frame", row.names = c(NA, -21L)) Program : > library(animation)> library(ggplot2) > anim <- function(a){for (i in seq(1,21)) {pl <- ggplot(a1111,aes(x=date,y=x))+geom_line()+scale_x_continuous(limits=c(1971,1991))+ scale_y_continuous(limits=c(0,100)) print(pl)}} > saveMovie(anim(),interval=0.1,outdir=getwd()) Session Info : R version 2.15.1 (2012-06-22) Platform: i386-pc-mingw32/i386 (32-bit) locale: [1] LC_COLLATE=English_United States.1252 [2] LC_CTYPE=English_United States.1252 [3] LC_MONETARY=English_United States.1252 [4] LC_NUMERIC=C [5] LC_TIME=English_Unit...
2011 Mar 18
1
points() rendering points outside of input
...- stor.rat<- numeric(0) for (i in 1:iter) { sample.out<- pi.ratio(n) stor.rat[i]<- sample.out$est sum.pi[i]<- sum(stor.rat[1:i])/i base.plot() points(sample.out$loc[sample.out$ind,],col=2,pch=20,cex=0.8) points(sample.out$loc[!sample.out$ind,],col=4,pch=20,cex=0.8) } } saveMovie(pi.est(50,20),interval = 0.03, movie.name = "pianim.gif",outdir = getwd(), width = 600, height = 600); If you don't have animation installed and don't need to see a .gif you can just pull base.plot() out of pi.est() and render successive loops on top of each other. ?After a few...