Re: [R] R step-by-step execution

2010-10-22 Thread David Winsemius
On Oct 22, 2010, alais wrote: |Moreover can you please tell me how I can concatenate variables and strings so to print some debugging messages / "The value of x is " + x + " and the value of y is " +y. Commas, not "+"" cat("The value of x is ", x , " and the value of y is " , y) -- David

Re: [R] R step-by-step execution

2010-10-22 Thread news
Alaios writes: > > Hello! > I wouldl ike to ask you if R supports step by step execution. I have written > some nested loops and I would like to check on every step what are the > values > of some variables. Printing all the variables just creates a really big > output > of numbers. >

Re: [R] R step-by-step execution

2010-10-22 Thread Liviu Andronic
Hello On Fri, Oct 22, 2010 at 11:33 AM, Alaios wrote: > I wouldl ike to ask you if R supports step by step execution.  I have written > some nested loops and  I would like to check on every  step what are the > values > of some variables. > > fortune('browser') My solution when I run into myst

[R] R step-by-step execution

2010-10-22 Thread Alaios
Hello! I wouldl ike to ask you if R supports step by step execution. I have written some nested loops and I would like to check on every step what are the values of some variables. Printing all the variables just creates a really big output of numbers. Could you please give