Skip to content
Prev 279494 / 398506 Next

Writing out in loops

Is there some reason you can't create the entire file in R and then write it
out in a single step?

It looks like you're writing out
mat[1, 1:10]
so you could just use
write.table(mat[1, 1:10], filen)

Can you expand on what you're trying to do?

Sarah
On Tue, Dec 6, 2011 at 4:18 AM, Thomas <chesney.alt at gmail.com> wrote: