vote up 4 vote down star
2

What are the differences between R and S?

flag

probably could be reworded to say something like "what are the major differences between the language S and the Language R" – JD Long Jul 23 at 18:57

4 Answers

vote up 6 vote down check

The R FAQ does a decent job answering this question:

We can regard S as a language with three current implementations or “engines”, the “old S engine” (S version 3; S-Plus 3.x and 4.x), the “new S engine” (S version 4; S-Plus 5.x and above), and R. Given this understanding, asking for “the differences between R and S” really amounts to asking for the specifics of the R implementation of the S language, i.e., the difference between the R and S engines.

[...]

link|flag
vote up 0 vote down

If I'm not mistaken as of version 8 SPLUS is now compatible with R such that R libraries can be used in SPLUS.

Another difference is the scoping rules - R uses lexical scoping while S, as implemented by SPLUS, uses dynamic scope. This makes R more of a functional language but all objects reside in memory. In SPLUS if I recall correctly there is a 1:1 correspondence between objects in your workspace and objects on the hard-disk - this makes SPLUS slower but more amenable to handling larger data sets.

link|flag
vote up 0 vote down

If your talking about working from the command prompt or with scripts, the biggest difference will be package support. The most fundamental difference is the underscore assignment operator. In S y_2 is the same as y=2. In R y_2 is just a string/object. When I moved from S to R several years ago (was on S 5.x at the time) I found most of my functions and scripts ran pretty well by just replacing the underscores with <-. An example for me was the spatial stats implementation. At the time the S spatial stats package was about 8 years old with no updating. R had several packages available and most of the new research seemed to be implemented for R (free goes a long way with academics).

S-Plus has a huge GUI front-end and ostensibly that's what the several grand price tag is for. However my S experience is several versions old now.

link|flag
vote up 2 vote down

If you read past the first FAQ on answer the R FAQ holds some details on the specifics of the R implementation of S.

3.3 What are the differences between R and S?

link|flag

Your Answer

Get an OpenID
or

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