Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Useful book(s) on learning Object Oriented Programming in R? [closed]

Tags:

r

s4

I was reading an interesting post on R-bloggers on ''Object Oriented Programming in R using S4 Classes". The book "Statistics and Computing" written by Venables and Ripley has some chapters introducing S3 classes and S4 classes in S and R and have been useful to me in terms of understanding the concept of object oriented programming in R.

Do you know of any useful book(s) introducing Object Oriented programming in R in more details with examples like the one in the R blogger?

like image 226
Sam Avatar asked Aug 20 '12 14:08

Sam


1 Answers

As the commenters said, "Software for Data Analysis" by John chambers is excellent. I would also recommend the R manual "Writing R Extensions", although it can get quite technical. For more introductory sources, I would look into these documents: How Methods Work by John Chambers, this S4 tutorial by Christophe Genolini, and this useful powerpoint, which is a nice high-level overview.

like image 159
Eli Sander Avatar answered Nov 15 '22 10:11

Eli Sander