[R] Automatic creation of file names

vincent@7d4.com vincent at 7d4.com
Thu Sep 22 16:30:10 CEST 2005


as a toy example :

for (i in 1:nbfiles)
  {
  fullname = paste("myfile",i, sep="");
  write.table(intable,fullname,col.names=F,row.names=F,quote=F);
  }

see
?paste
hih




More information about the R-help mailing list