I'm looking for resources to start exploring the R language (as was recommended in my question on Statistical Tools). I know there are some suggestions for basic online tutorials in this thread, but I'd like something a little bit more extensive.

Any suggestions for good textbook like references, either online and in dead-tree form?

link|improve this question

feedback

closed as not constructive by Tim Post Sep 18 '11 at 22:05

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

17 Answers

up vote 34 down vote accepted

Check out these notes on R for programmers. I found R hard to learn because it's so unlike other programming languages, so I wrote up these notes for other programmers coming to R.

Also, as far as books, I recommend The R Book by Michael Crawley. It's expensive, around $100, but it's well-written and covers a lot of material (around 900 pages).

Update: Now I'd recommend a new book, The Art of R Programming. It's more programmer-friendly than most R books. For example, it's organized by language feature rather than statistical task.

link|improve this answer
11  
John's notes are useful for programmers. But I wouldn't recommend Crawley. There is a good review of the problems with the book in Statistical Papers (2009) 50:445–446, reviewer: Uwe Ligges (springerlink.com/content/l36754377r182731). – Rob Hyndman Sep 8 '09 at 22:40
I bought the Crawley book about nine months ago w/ the intention of using it as a primary reference. My experience w/ this text is certainly consistent w/ the Review above. – doug Dec 22 '09 at 11:05
feedback

When I started to use R, several books seemed to me like a Bible of R language. On top of all, they were (and still are) free (as in "free beer"):

  • An Introduction to R PDF HTML - W. N. Venables, D. M. Smith and the R Development Core Team
  • R for Beginners PDF - Emmanuel Paradis
  • Using R for Data Analysis and Graphics: Introduction, Code and Commentary PDF - J. H. Maindonald
  • simpleR: Using R for Introductory Statistics PDF - John Verzani
  • The R Guide PDF - W. J. Owen
  • Introduction to Probability and Statistics Using R URL - G. Jay Kerns
  • The R Inferno PDF - Patrick Burns
  • An Introduction to R PDF - Longhow Lam PDF
  • [R] Companion for Experimental Design and Analysis for Psychology PDF - Lynne J. Williams, Anjali Krishnan & Hervé Abdi

You can find a lot of books and some more in depth documentation at http://cran.r-project.org/other-docs.html

But there are a lot of good, non-free books:

  • A Beginner’s Guide to R - Alain F. Zuur, Elena N. Ieno, Erik H.W.G. Meesters
  • A First Course in Statistical Programming with R - W. John Braun and Duncan J. Murdoch
  • A Handbook of Statistical Analyses Using R - Brian S. Everitt and Ibrsten Hothorn
  • A Modern Approach to Regression with R - Simon J. Sheather
  • Analyzing Linguistic Data A Practical Introduction to Statistics Using R - R. H. Baayen
  • Applied Spatial Data Analysis with R - Roger S. Bivand, Edzer J. Pebesma and Virgilio Gómez-Rubio
  • Applied Statistics Using SPSS, STATISTICA, MATLAB and R - Joaquim P. Marques de Sá
  • Bayesian Computation with R - Jim Albert
  • Data Analysis and Graphics Using R - an Example-Based Approach - John Maindonald, W. John Braun
  • Data Manipulation with R - Phil Spector
  • Data Mashups in R - Jeremy Leipzig and Xiao-Yi Li
  • Dynamic Linear Models with R - Giovanni Petris, Sonia Petrone and Patrizia Campagnoli
  • Extending the Linear Model with R - Julian J. Faraway
  • ggplot2 - Elegant Graphics for Data Analysis - Hadley Wickham
  • Indispensable - JasperReports, iReport, and R - Dave Jarvis
  • Interactive and Dynamic Graphics for Data Analysis With R and GGobi - Dianne Cook and Deborah F. Swayne
  • Introduction to Applied Bayesian Statistics and Estimation for Social Scientists - Scott M. Lynch
  • Introduction to Scientific Programming and Simulation using R - Owen Jones, Robert Maillardet and Andrew Robinson
  • Introductory Statistics with R - Peter Dalgaard
  • Lattice Multivariate Data Visualization with R - Deepayan Sarkar
  • Linear Models with R - Julian J. Faraway
  • Modern Applied Statistics with S - W. N. Venables and B. D. Ripley
  • Practical Regression and Anova using R - Julian J. Faraway
  • Practical Tools For Exploring Data and Models - Hadley Alexander Wickham (correct me if I'm wrong, but I think this one is free)
  • R for SAS and SPSS Users - Robert A. Muenchen
  • R Graphics - Paul Murrell
  • R in a Nutshell: A Desktop Quick Reference - Joseph Adler
  • R in Action - Data Analysis and Graphics with R - Robert Kabacoff
  • Robust Statistical Methods with R - Jana Jurečková and Jan Picek
  • R Through Excel - Richard M. Heiberger and Erich Neuwirth
  • Software for Data Analysis - Programming with R - John M. Chambers
  • Statistics and Data with R: An applied approach through examples - Yosef Cohen and Jeremiah Y. Cohen
  • Statistics: An Introduction using R - Michael J. Crawley
  • The R Book - Michael J. Crawley
  • Time Series Analysis and Its Applications With R Examples - Robert H. Shumway and David S. Stoffer
  • Time Series Analysis With Applications in R - Jonathan D. Cryer and Kung-Sik Chan
  • Wavelet Methods in Statistics with R - G. P. Nason
link|improve this answer
2  
The R inferno is a great find, thanks! – Stedy Apr 29 '10 at 1:16
feedback

The best book I know of for learning R is actually a book about R's almost-identical-twin S:

Modern Applied Statistics with S (by Venables and Ripley)

cover

link|improve this answer
feedback

I recommend from personal experience Introductory Statistics with R by one of the R development team, Peter Dalgaard.

enter image description here

It is thoughfully written if a bit technical, and helped me to get productive in two skills difficult to learn from scratch - stats and R programming.

It also comes in paperback which is much easier follow along and use as a wrist-pad while at the console.

link|improve this answer
1  
This is a great book, especially if you want to do day-to-day statistical work. – Alex Reynolds Sep 8 '09 at 20:25
feedback

Norman Matloff's R for Programmers PDF: http://heather.cs.ucdavis.edu/~matloff/R/RProg.pdf

This is for a distinct audience; it's not an introduction to statistical methods in R as much as an introduction to the R language. Really excellent though.

link|improve this answer
feedback

A Handbook of Statistical Analysis Using R is a great resource.

enter image description here

By the way, you mentioned in your original thread that you are specifically looking for a good mix of usability (for non-programmer users) and power. R is completely driven by the command line, so I highly recommend you also look at S-PLUS since it's very similar to R but contains an elegant GUI interface.

link|improve this answer
Yes, I'm also considering S-Plus as an option for our current needs. An alternative is a R-hybrid (either embedded into Excel, or with a python interface which the non-programmers could work with). Either way, I'm at the point where I should learn a new language, so I have nothing to lose with R. – Kena Oct 10 '08 at 17:38
I've only used R from the command line, what about R commander for a GUI? – Thomas Owens Oct 10 '08 at 17:41
feedback

I used this book for a class I took on R:

Data Analysis and Graphics Using R

Data Analysis and Graphics Using R

It's not the best programming tutorial I've ever used, nor is it a great explanation of statistical analysis, but it gets the job done. It does have some decent examples with sample datasets for download.

link|improve this answer
feedback

A First Course in Statistical Programming with R

Really good explanaitions of the basics in the first chapters, then goes deeper.

link|improve this answer
feedback

As with statistical models, there may not be a single book that is universally best for everyone. What is best for you, may well be about average for me. Dalgaard’s Introductory statistics with R is a good book. Rizzo's Statistical computing with R is another good book (for another thing). The series of inexpensive and focused books on R by Springer are good, too. Just start from a subset of Rob Hyndman's list (or any good equivalent), see what works best for you and eventually create your own list.

On another note, the review of Crawley's R book that Rob pointed to is helpful. But the number of typos, grammar issues and style inconsistencies per half-page is somewhat less than acceptable for a tier B refereed journal. Also, Zeilberger's opinion 63 comes to mind.

link|improve this answer
feedback

A different approach that I don't see here has been useful to me. When there is a subject for which I need to use R, find a book written on that subject and work through it. On that note:

Ben Bolker's Ecological Models and Data in R

and from the Use R series, which are often written by the authors of packages:

Lattice: Multivariate Data Visualization with R

ggplot2: Elegant Graphics for Data Analysis

link|improve this answer
feedback

I've found the following online book, which has the benefit of being free: An Introduction to R

Anyone can tell me if it's any good?

link|improve this answer
That's by the folks who maintain and develop R, so it should be pretty good. – Scottie T Oct 10 '08 at 17:52
That's not necessarily a guarantee ;) – Kena Oct 10 '08 at 17:58
True. It should be accurate, at least. If not, you might want to consider a different statistics package. – Scottie T Oct 10 '08 at 18:04
feedback

I've posted a list of nine recommended books on R here: http://robjhyndman.com/researchtips/r-books/

link|improve this answer
feedback

The Wikipedia has a list of books in its Resources section at the bottom of the page.

Hope they are of use to you.

link|improve this answer
Your link is broken :( I was hoping to get answers from people with first-hand experience in learning the language. – Kena Oct 10 '08 at 17:36
1  
Corrected the link. Sorry, no first hand experience. – Optimal Solutions Oct 10 '08 at 17:40
feedback

I can highly recommend Penn University's Introductory Course on R.

There are many highlights, for example the chapter on ggplot which is outstanding and as a free introduction I think it is a great recommendation.

link|improve this answer
feedback

I originally learned R from Venables and Ripley, and found it to be the best at the time. I looked at Dalgaard, but found that I progressed very quickly beyond what it covered. It is good if there are only a few basic stats you want to do, but if you want to go any further with programming in R, it is too basic. The free Introduction to R is okay, but not the best way to get started quickly, in my experience.

What I currently recommend to anyone starting R is Crawley's The R Book. It is extremely complete and easy to read, with good examples. After using R for 6 years, I managed to pick up a half dozen new tricks just from reading the first chapter. I recommend it without hesitation, if you can afford to spend any money at all.

link|improve this answer
feedback

The R Journal : http://journal.r-project.org/

link|improve this answer
feedback

I think the best way to learn a programming language is not thru a book anymore(like it is in 19th century) but thru smart instructional videos. here is a link that will help you a lot at least initially. it indeed follows a book and showcases examples right on the screen with extra flavors. it also get comprehensive soon enough to keep you excited and get complicated simple enough to make you an advanced user to get the most out of R. http://sentimentmining.net/StatisticsWithR/

hope this helps...

link|improve this answer
feedback

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