up vote 19 down vote favorite
6
share [g+] share [fb]

Does anyone know a good online resource for example of R code?

The programs do not have to be written for illustrative purposes, I am really just looking for some places where a bunch of R code has been written to give me a sense of the syntax and capabilities of the language?

Edit: I have read the basic documentation on the main site, but was wondering if there was some code samples or even programs that show how R is used by different people.

link|improve this question

You might want to add R-project or R-language as a tag here. – Gregg Lind Sep 26 '08 at 19:51
feedback

15 Answers

up vote 10 down vote accepted

I just found this question and thought I would add a few resources to it. I really like the Quick-R site:

http://www.statmethods.net/

Muenchen has written a book about using R if you come from SAS or SPSS. Originally it was an 80 page online doc that Springer encouraged him to make a 400+ page book out of. The original short form as well as the book are here:

http://rforsasandspssusers.com/

You've probably already seen these, but worth listing: http://cran.r-project.org/doc/manuals/R-intro.pdf http://cran.r-project.org/doc/contrib/Owen-TheRGuide.pdf http://cran.r-project.org/doc/contrib/Kuhnert+Venables-R_Course_Notes.zip

I don't want to sound like a trite RTFM guy, but the help files generally have great short snips of working code as examples. I'm no R pro so I end up having to deconstruct the examples to understand them. That process, while tedious, is really useful.

Good luck!

EDIT: well I hesitated to be self linking (it feels a bit masturbatory) but here's my own list of R resources with descriptions and comments on each: http://www.cerebralmastication.com/?page_id=62

link|improve this answer
feedback

Why not look at www.r-project.org under documentation and read at least the introduction? The language is sufficiently different from what you're used to that just looking at code samples won't be enough for you to pick it up. (At least, not beyond basic calculator-like functionality.)

If you want to look a bit deeper, you might want to look at CRAN: an online collection of R modules with source code: cran.r-project.org

link|improve this answer
I have done that, just realised I should mention that. :) – kaybenleroll Sep 24 '08 at 13:34
1  
Then you might want to look into CRAN: an online collection of R modules, with source code: cran.r-project.org – zvrba Sep 24 '08 at 13:38
feedback

The Rosetta Code project shows R compared to other languages.

link|improve this answer
feedback

The simplest way of seeing code, is to

  1. install R
  2. type "help.start()" or look at online documentation, to get names of functions
  3. type the function name at the prompt

This will print the source code right at the prompt, and illustrate all manner of odd and interesting syntax corners.

link|improve this answer
Re your point 3: this shows the 'parsed' R code which has all comments stripped. Good for a quick look, but the source packages may well be more informative. – Dirk Eddelbuettel Jul 26 '09 at 21:12
Of course they're more informative! This method also fail for code that calls out to C programs. But it's hard to beat for speed of access, and to snoop around to find out some arcane detail. – Gregg Lind Jul 26 '09 at 21:59
feedback

How about CRAN? You've got over a thousand packages of code to choose from.

link|improve this answer
feedback

The Learning R blog has a lot of good examples. Lately, the author has been doing a visualization series, comparing Lattice and ggplot2.

link|improve this answer
feedback

Some simple examples can be found at Mathesaurus - if you know e.g. Python or Matlab, look at the respective comparison charts to find the R idioms that correspond to your familiar idioms in the other language.

link|improve this answer
feedback

It is hard to google r, because of it being too short a name. Try http://rseek.org/, which provides an r-customized Google search instead. Search on examples, code in repositories, etc.

link|improve this answer
feedback

http://had.co.nz/ggplot2/ has a lot of graphics with example code. And you only need one package to create almost every graph you need.

link|improve this answer
feedback

There is also the R Wiki which is slowly growing.

link|improve this answer
The home page seems to have moved: rwiki.sciviews.org/doku.php – fgm2r Aug 14 '11 at 16:56
feedback

As you probably know, R and S are pretty similar (apart from the cost!).

I use to use both, and I highly recommend S Poetry.

I can also highly recommend the M.J. Crawley book, and the shorter Venables & Ripley one.

link|improve this answer
feedback

Use Google Code Search with command "lang:r" and your keyword(s)

link|improve this answer
feedback

here are links to the R project group on Linkedin. I put together this list of links and a lot of people have found it useful (some have also made very useful additions)

link|improve this answer
feedback

Steve McIntyre at http://www.climateaudit.org/ is a big fan of R and often posts working code.

There is a scripts category, and the Statistics and R lists some other resources

link|improve this answer
14  
What the heck...This blog is just a bunch of climate data. I thought I was going to actually benefit from this accepted-answer. – Jonathan Sampson Jul 23 '09 at 18:21
4  
@Boden, which makes it a pathetic 'answer.' Might as well link to Google from now on for every question. – Jonathan Sampson Jul 23 '09 at 19:09
1  
I've added a few more-direct links to R related stuff, which wasn't immediately obvious to find.. – dbr Jul 26 '09 at 7:32
2  
What an obnoxious bunch of people seem to have turned-up to savage my 9month-old answer! The questioner asked for examples of "how 'R' is used by different people", and I gave one, which he seemed to like... Funny enough, then next answer down doesn't answer the actual question, but is a more popular (not) answer! Strange how these things turn out. :-) – Will Dean Jul 27 '09 at 16:27
2  
Probably because of this thread: meta.stackoverflow.com/questions/8584/…. I don't think this answer deserves to be chosen, nor downvoted to this extent. The person who chose this answer deserves the downvotes more, imho. – nagul Aug 1 '09 at 14:13
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

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