[R] R execution

2010-08-13 Thread chantalm
So I have a for loop for (i in 1 : 5) { print(i) } and I want it to print 1, 2, 3, 4, 5 sequentially for each loop iteration. Instead, it waits for the whole loop to finish and then prints. It's strange because my R console seems to have two modes of execution. One where it will iterate for

Re: [R] R execution

2010-08-13 Thread David Winsemius
On Aug 13, 2010, at 6:57 PM, chantalm wrote: So I have a for loop for (i in 1 : 5) { print(i) } and I want it to print 1, 2, 3, 4, 5 sequentially for each loop iteration. Instead, it waits for the whole loop to finish and then prints. It's strange because my R console seems to have two

[R] R execution by VBA Macro

2009-09-22 Thread dhansekaran
Hello everyone I am using RExcel, an add-in to use R interface within MS Excel workbook. The add-in is freely distributed by Statconn. Pls refer http://www.statconn.com/ I need help to start writing VBA Macro to invoke and execute R to read .csv file. This is what I made so far… But Compilation