Rev 409 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
THE BASIC R README(See "RESOURCES" for additional resources)1. INTRODUCTIONThis directory contains the Unix source code tree for R, which isa language which is not entirely unlike the S language developedat AT&T Bell Laboratories by Rick Becker, John Chambers and AllanWilks. Indeed in the (present) absence of an R manual, you can(mostly) get along by using the S manual.R is free software distributed under a GNU-style copyleft.Currently the software is undergoing active development. Discussionof the development process is carried out on the "r-devel" mailinglist. See the file RESOURCES for details on how to subscribe tothis list.2. HISTORYR was initially written by Robert Gentleman and Ross Ihaka of theStatistics Department of the University of Auckland. In addition,a large group of individuals has contributed to R by sending codeand bug reports.Since mid-1997 there has been a core group who can modify the Rsource code CVS archive. The group currently consists ofPeter Dalgaard, Robert Gentleman, Kurt Hornik, Ross Ihaka,Friedrich Leisch, Thomas Lumley, Martin Maechler,Paul Murrell, Heiner Schwarte, and Luke Tierney.As noted above, discussions of the development process takeplace in the r-devel mailing list.3. PRESENT STATUSThe present version implements most of the functionality in thefirst S book (the "Blue Book") and many of the applications. Inaddition, we have implemented a certain amount of functionalityfrom the second S book (the "White Book"). In particular we havea functioning versions of "lm" and "glm" and their associated"summary" and "anova" methods (it would be nice to have "drop1","add1" and "step", but there hasn't been time to complete theseyet).What we have in the way of manual is in the directory in an"output independent" form which can be used to create versionsfor HTML, LaTeX, troff etc.4. GOALSOur aim at the start of this project was to demonstrate that it waspossible to produce an S-like environment which did not suffer fromthe memory-demands and performance problems which S has. It is onlyrecently that we have started trying to turn R into a "real" system.In the short term we hope to create a small portable free systemwhich will provide most of the functionality of S and perhaps someextensions.Future versions will see R converted to GNU coding standards.5. SOME DIFFERENCES BETWEEN R AND S1. In R, "factor" and "ordered factor" are primitive vector types.This means in particular that they can be shaped as arrays.2. In R a list is a Lisp-style list composed of dotted pairs, ratherthan a vector of generic elements as in S. This means that listsubscripting can be rather inefficient. However, lists are rarelylarge and so we have not (yet) bothered to implement a matching"generic vector" type, even though this could be quite useful.Robert Gentleman + Ross Ihaka + The R core.