[R] question about for loop

2006-12-14 Thread Jenny persson
Dear R-experts, I have a dataset of 4 patients and each patient has many records at four different time points. I have done 4 different qqnorm plots on the same graph where each plot represents the records of one patient at each time point. I would like to do the same graph for the

Re: [R] question about for loop

2006-12-14 Thread Petr Pikal
:[R] question about for loop Dear R-experts, I have a dataset of 4 patients and each patient has many records at four different time points. I have done 4 different qqnorm plots on the same graph where each plot represents the records of one patient at each time

Re: [R] Question about for loop?

2006-03-29 Thread Uwe Ligges
Andris Jankevics wrote: Hello useRs, I can't figure out how can I store a data frame of values of X and D from this loop: Z - c(1:10) for (i in 1:(length(Z)-2)) {D - x[1:(2+i)]; X - paste(x,sep=,i) print (X) print (D) } Assign them as elements