1. I would strongly recommend that you spend some time with one of the
many R tutorials (An Introduction to R ships with R, but there are
many more on the web) before attempting to write any further code or
posting here.

2. Post in plaiin text, not HTML, as code can get scrambled in HTML.


Bert Gunter
Genentech Nonclinical Biostatistics
(650) 467-7374(650) 467-7374(650) 467-7374(650) 467-7374

"Data is not information. Information is not knowledge. And knowledge
is certainly not wisdom."
H. Gilbert Welch





---------- Forwarded message ----------
From: koushiki sarkar <koushikisark...@gmail.com>
Date: Mon, Mar 17, 2014 at 7:32 PM
Subject: [R] Beginner: How do I copy the results from a for loop in a csv file?
To: r-help@r-project.org


Hello
I am using 2 for loops to find the difference between all rows of a matrix.
I  need to store it to a csv file. I have written this:
for (i in 0:length(datamat)){
for (j in i+1:length(datamat)){
x<-datamat[i,]-datamat[j,];
y<-as.data.frama(x);
write.csv(y, "dif.csv")
}}

datamat is the original datamatrix and dif is the file i want to copy the
results to.
However, when i open this file, I find it empty. What is it that I'm doing
wrong? Also, can I store the results of this loop in another matrix? If
then, how? I am new to R and not skilled in other programming languages.
Any help is appreciated!
Thank you

        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.
Call
Send SMS
Add to Skype
You'll need Skype CreditFree via Skype
Call
Send SMS
Add to Skype
You'll need Skype CreditFree via Skype
Call
Send SMS
Add to Skype
You'll need Skype CreditFree via Skype

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to