Skip to main content

The Evolution of R: From S-Inspired Language to Statistical Powerhouse

The Beginner’s Guide to the History of R Programming:

R Programming is basically the dialect of S Programming.


S History:

The S programming language was first developed in the late 1970s by John Chambers and his colleagues at Bell Laboratories. It was initially used for data analysis and graphics, and it served as the basis for the commercial software package S-PLUS, which was released in the early 1990s.

While S-PLUS was popular in the statistical community for many years, it has since been largely replaced by the open-source software environment R, which was inspired by S and developed by some of the same people who worked on S-PLUS.

As for the current version of S, it's not as widely used as R, and there are several different implementations of the S language that are still available today, including:
  • S-PLUS: This is the commercial implementation of S that was developed by TIBCO Software Inc. It is still in use today, although it has been largely supplanted by R in the statistical community.
  • OpenS: This is an open-source implementation of the S language that was developed by members of the R community. It is available under the GPL license and can be downloaded from CRAN (https://cran.r-project.org/web/packages/OpenS/index.html).
  • R's S compatibility mode: R includes a compatibility mode that allows users to run S code within R. This feature was added to R in version 3.4.0 (released in 2017) and is designed to make it easier for users who are transitioning from S to R.

Overall, while the S programming language is no longer as widely used as it once was, its legacy can be seen in the continued use of S-PLUS and in R's compatibility mode.

R History:

R is a programming language and open-source software environment widely used for statistical computing, graphics, and data analysis. It was created by Ross Ihaka and Robert Gentleman at the University of Auckland, New Zealand, in the mid-1990s. R was initially developed as a free alternative to the commercial software S-Plus, which was popular in the statistical community at the time.

Since its creation, R has grown in popularity and is now one of the most widely used programming languages for data science and statistical analysis. It has a large and active community of developers and users who contribute to its development, support, and documentation.

R is licensed under the GNU General Public License and is available for free download and use from the Comprehensive R Archive Network (CRAN). R also has a number of integrated development environments (IDEs) available, including R Studio, which is a popular choice among R users.

R has a wide range of built-in statistical and graphical functions, and it also supports the use of packages, which can be downloaded from CRAN or other sources. These packages extend R's capabilities and allow users to perform more specialized or complex analyses. There are currently over 18,000 packages available on CRAN alone, covering topics such as machine learning, time series analysis, spatial statistics, and more.

One of the advantages of R is its flexibility and extensibility. Users can easily create custom functions and packages, making it easy to adapt to new research questions or analysis needs. Additionally, R has a robust graphics system that allows for the creation of high-quality visualizations, which are essential for effective communication of results.

Overall, R has become an essential tool for data scientists, statisticians, and researchers across a wide range of fields. Its popularity is due in large part to its flexibility, extensibility, and the large and active community of developers and users who contribute to its ongoing development and support.

Current Version Of R:


The current version of R as of my knowledge cutoff date (September 2021) is R 4.1.1, which was released on July 26, 2021.

R releases new versions on a regular basis, with major releases occurring every year or two, and minor releases (which include bug fixes and small improvements) occurring more frequently. The latest version can always be downloaded from the R Project website (https://www.r-project.org/).

One of the strengths of R is its active development community, which is constantly working to improve and extend the language. This community contributes new packages to CRAN (the Comprehensive R Archive Network), which provides a repository of more than 18,000 R packages that can be easily installed and used with R.

Users are encouraged to keep their installations of R up-to-date to take advantage of the latest features and bug fixes. The R community provides tools to make it easy to upgrade to the latest version, and many users rely on these tools to keep their installations current.

Useful Resources to Learn R:


To learn more about R, the following links may be useful: 

Comments

Popular posts from this blog

Introduction to R Markdown

The Beginner’s Guide to R Markdown! We’ve spent a lot of time getting R and R Studio working, learning about Functionalities of R Studio and R Packages - you are practically an expert at this! There is one major functionality of R/R Studio that we would be remiss to not include in your introduction to R -  Markdown! Functionalities in R Studio Introduction to R Packages What is R Markdown? R Markdown is a way of creating fully reproducible documents, in which both text and code can be combined. In fact, these lessons are written using R Markdown! That’s how we make things: bullets bold italics links or run inline r code And by the end of this lesson, you should be able to do each of those things too, and more! Despite these documents all starting as plain text, you can render them into HTML pages, or PDFs, or Word documents, or slides! The symbols you use to signal, for example,  bold  or  italics  is compatible with all of those formats. Wh...

What is Data? And What is Data Science Process?

The Beginner’s Guide to Data & Data Science Process About Data: In our First Video today we talked about Data and how the Cambridge English Dictionary and Wikipedia defines Data, then we looked on few forms of Data that are: Sequencing data   Population census data ( Here  is the US census website and  some tools to help you examine it , but if you aren’t from the US, I urge you to check out your home country’s census bureau (if available) and look at some of the data there!) Electronic medical records (EMR), other large databases Geographic information system (GIS) data (mapping) Image analysis and image extrapolation (A fun example you can play with is the  DeepDream software  that was originally designed to detect faces in an image, but has since moved on to more  artistic  pursuits.) Language and translations Website traffic Personal/Ad data (e.g.: Facebook, Netflix predictions, etc.) These data forms need a lot of preprocessin...

Introduction to Functions and Arguments in R Programming: Part 2

The Beginner’s Guide to Functions in R Programming: Functions are an essential part of programming, and they play a critical role in R programming. In R, a function is a set of instructions that perform a specific task. Functions in R can have several arguments, and their evaluation can be lazy or eager. In this blog post, we will explore functions in R, including their  "dot-dot-dot" or ellipsis  argument, lazy evaluation, and more . Ellipsis or "dot-dot-dot" Argument in R Functions The "dot-dot-dot" or ellipsis argument in R programming is a special argument that can be used in functions to represent a variable number of additional arguments that are not explicitly defined in the function. The ellipsis argument is represented by three dots ... and is typically used at the end of the function's argument list. When the function is called, any additional arguments provided by the user after the defined arguments are collected by the ellipsis argument an...