I have been using R for a few days now but I do find it extremelly slow (for loop takes for ever). I created simple script with basic computation and plotting of 1 graph. Does that sound normal to you?

I am using R studio. Do you know a better editor? I am not too impressed.

Thanks

Xavier

link|improve this question
2  
R is slow compared to what? How long is forever? – Rafe Kettler Jun 28 '11 at 6:30
Could you post the code and the structure and dimensions of your data set? Try Tinn-R for another editor, although Emacs and ESS are the (hard to learn) nonplusultra, in my opinion. – Alexx Hardt Jun 28 '11 at 6:32
1  
I have been using R for a long time, and I think for a free scripting language it is not bad. But your question needs to be more precise. – Alphaneo Jun 28 '11 at 6:34
You are free to use any editor of choice with R. However, your problem is probably with your code and not the editor. P.lease paste your specific code and we might be able to comment – Andrie Jun 28 '11 at 7:50
2  
Googling around would have given you Tinn-R, Eclipse and StatET, Emacs and ESS as three widely used editors. For the rest : learn to use R correctly before you complain about it. If you drive a ferrari only in first gear, it will be a slow car as well. – Joris Meys Jun 28 '11 at 10:16
show 1 more comment
feedback

closed as not a real question by mdsumner, Gavin Simpson, Joris Meys, Chase, Joshua Ulrich Jun 28 '11 at 12:16

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

If you are using for loops, you are most likely coding R as if it was C or Java or something else. R code that is properly vectorised is extremely fast.

Take for example these two simple bits of code to generate a list of 10,000 integers in sequence:

The first code example is how one would code a loop using a traditional coding paradigm. It takes 28 seconds to complete

system.time({
    a <- NULL
    for(i in 1:1e5)a[i] <- i
})
   user  system elapsed 
  28.36    0.07   28.61 

You can get an almost 100-times improvement by the simple action of pre-allocating memory:

system.time({
    a <- rep(1, 1e5)
    for(i in 1:1e5)a[i] <- i
})

   user  system elapsed 
   0.30    0.00    0.29 

But using the base R vector operation using the colon operator : this operation is virtually instantaneous:

system.time(a <- 1:1e5)

   user  system elapsed 
      0       0       0 
link|improve this answer
+1 though I would regard your second example as unconvincing as a[i] does not change. But system.time({a <- NULL; for(i in 1:1e5){a[i] <- 2*i} }); system.time({a <- 1:1e5; for(i in 1:1e5){a[i] <- 2*i} }); system.time({a <- NULL; a <- 2*(1:1e5)}) has a similar result. – Henry Jun 28 '11 at 7:06
@Henry, fair comment, but as you point out, the results are the same. I have modified the example to initialise a to rep(1, 1e5) - the timings are identical. – Andrie Jun 28 '11 at 7:32
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.