An embedded and charset-unspecified text was scrubbed... Name: not available Url: https://stat.ethz.ch/pipermail/r-help/attachments/20040209/d3d3bcb3/attachment.pl
Duncan's Multiple Range test
2 messages · Andi Hund, Marcos Sanches
Hi all!
I wrote a very basic program in R, which has some loops ('for' and
'while'). Is there a way to print the 'for' (or while) indice while the
program is running so that I am able to estimate where the program is
and how long it will last?
I mean, I want something like this:
i<-0
While(i<100){
"do a lot of commands"
"print i"
i<-i+1
}
How do I "print" the "i" at each step?
Thanks in advance,
Marcos