vote up 10 vote down star
1

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.

flag

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

13 Answers

vote up -7 vote down check

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|flag
11  
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 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 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 at 7:32
1  
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 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 at 14:13
show 4 more comments
vote up 14 vote down

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|flag
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
vote up 9 vote down

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

link|flag
vote up 8 vote down

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|flag
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 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 at 21:59
vote up 8 vote down

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|flag
vote up 7 vote down

The Rosetta Code project shows R compared to other languages. Only 9 examples at present though.

link|flag
vote up 5 vote down

I use the R Graph Gallery. It has been a lot of help on graphing itself. Lots of good examples.

#R on Freenode has also been very useful.

link|flag
vote up 4 vote down

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|flag
vote up 4 vote down

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|flag
vote up 4 vote down

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

link|flag
vote up 3 vote down

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|flag
vote up 3 vote down

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|flag
vote up 3 vote down

There is also the R Wiki which is slowly growing.

link|flag

Your Answer

Get an OpenID
or

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