Live data from Hacker News

Calling R lovers to work together on “The R Programming wikibook”

r-statistics.com

1–10 of 12 posts

Re: Calling R lovers to work together on “The R Programming wikibook”

#6
post #2

Even better, reimplement the interpreter with modern data structures...

Would you please be so kind and explain in some more detail what you mean? Thank you!

Well, as far as I remember lists (which are used like hash tables, as they associate variables with names, see http://cran.r-project.org/doc/manuals/R-lang.html#List-objec...), implement indexing as an O(n) operation. Only after they reach a certain size are they converted to a hash table.

Everything is pass by value with some cases being marked as 'safe', i. e. if you know beforehand the variable won't be changed it's not copied to save time.

The reason for this is that the project was designed by people who were primarily statisticians, and the most glaring performance problems were later fixed by hacks and 'special cases'.

Disclaimer: Most of this I know second hand from a coworker who's an author of many R packages. I worked with R's interface to C and it wasn't a pleasant experience.

Re: Calling R lovers to work together on “The R Programming wikibook”

#7
I'd love to see an "R for rubyists/pythonists/...", basically an R tutorial aimed at reasonably experienced programmers which explains what you need to know about the quirks of R to properly grok it as a language, how it differs to ones you're familiar with, etc.

As opposed to a tutorial aimed at the "I really just want a recipe to achieve statistical task xyz" crowd.

In particular: every time I delve back into R, I forget how its funky data structures work.

Re: Calling R lovers to work together on “The R Programming wikibook”

#9
post #7

I'd love to see an "R for rubyists/pythonists/...", basically an R tutorial aimed at reasonably experienced programmers which explains what you need to know about the quirks of R to properly grok it as a language, how it differs to ones you're familiar with, etc. As opposed to a tutorial aimed at the "I really just want a recipe to achieve statistical task xyz" crowd. In particular: every time I delve back into R, I…

Not sure that's possible. "R in a Nutshell" is 640 pages for a reason.

Re: Calling R lovers to work together on “The R Programming wikibook”

#10
post #8
post #2

Even better, reimplement the interpreter with modern data structures...

Glad I'm not the only one bugged by this. Next time I think I might try the http://rubyforge.org/projects/rsruby/ bindings instead.

I would recommend http://rpy.sourceforge.net/rpy2.html (I'm biased, though ;))
Post reply on HN