Re: [R] Writing Graphs to Files

2010-01-27 Thread Jerry Floren
Thank you so much Eik. This is what I used, and it genereated 530 files of triple graphs in less than a minute. dev.copy(win.metafile, file = paste(myV,"emf",sep="."), width = 7, height = 10, pointsize = 12) dev.off() Thanks again, Jerry Floren Minnesota Department of Agriculture -- View thi

Re: [R] Writing Graphs to Files

2010-01-27 Thread Eik Vettorazzi
Hi Jerry, have a look at ?paste and perhaps ?win.metafile too. something like > file = paste(myV,"emf",sep=".") will do the trick. cheers. Jerry Floren schrieb: Greetings, I am trying to write multiple .emf graphs to individual files. Our data is from agricultural laboratories where individ