Skip to content
Prev 77692 / 398502 Next

Automatic creation of file names

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