Musings on Software

This web log is my online notebook for software tips and hacks to make my life and hopefully that of someone else just a little bit easy. Should you find any mistakes or have any useful suggestions, please do not hesitate to write to me. Peace! Pavan Ghatty

Thursday, August 18, 2011

png figures in a loop in R

This sample script creates 100 png figures with the iteration number included in the name.

for(i in 1:100) {
a<-rnorm(100)
name<-paste("test",i,".png",sep="")
png(name)
plot(a/max(a),type="l")
dev.off()
}

Posted by Pavan K. Ghatty at 5:51 PM
Labels: R

No comments:

Post a Comment

Newer Post Older Post Home
Subscribe to: Post Comments (Atom)

Blog Archive

  • ►  2018 (2)
    • ►  April (2)
  • ►  2016 (2)
    • ►  December (1)
    • ►  April (1)
  • ►  2015 (1)
    • ►  August (1)
  • ►  2014 (12)
    • ►  September (1)
    • ►  June (1)
    • ►  March (2)
    • ►  February (2)
    • ►  January (6)
  • ►  2013 (28)
    • ►  December (2)
    • ►  November (3)
    • ►  October (7)
    • ►  August (5)
    • ►  April (3)
    • ►  March (1)
    • ►  February (1)
    • ►  January (6)
  • ►  2012 (50)
    • ►  December (3)
    • ►  November (2)
    • ►  October (6)
    • ►  September (2)
    • ►  August (4)
    • ►  July (6)
    • ►  June (3)
    • ►  May (2)
    • ►  April (5)
    • ►  March (5)
    • ►  February (6)
    • ►  January (6)
  • ▼  2011 (20)
    • ►  December (2)
    • ►  November (5)
    • ►  September (4)
    • ▼  August (2)
      • That #$%@ beep
      • png figures in a loop in R
    • ►  May (3)
    • ►  April (1)
    • ►  March (1)
    • ►  February (1)
    • ►  January (1)
  • ►  2010 (6)
    • ►  August (1)
    • ►  March (2)
    • ►  February (3)
Simple theme. Powered by Blogger.