Skip to content

*** saving files ***

1 message · TEMPL Matthias

#
Hi,

write.table(result, paste("path/file_",i,sep=""))

inside the for-loop should done this in a for( i in ... ) loop.

Or:
save(result, file=paste("path/file_",i,sep="")

See ?read.table and ?load for loading the files.

Best,
Matthias