Hi,

 > -----Original Message-----
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of Martin Lam
> 
> I was wondering, if it is possible to print out the
> values of variables while you are in a for/while loop?
> Like this for example:
>   
> for (i in 1:5) {
>   i
> }
> 

yes, should be possible:
for (i in 1:5) {
        print(i)
}

It might also help (assuming you work on MS Windows using RGui.exe) to
disable "buffered output" by pressing "CTRL+W". As you can see when
clicking on "Misc" in the toolbar, the default setting is "buffered
output". 

I hope this helps,
Roland

+++++
This mail has been sent through the MPI for Demographic Rese...{{dropped}}

______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to