R (programming language)

R language
Paradigms Multi-paradigm: Array, object-oriented, imperative, functional, procedural, reflective
Designed by Ross Ihaka and Robert Gentleman
Developer R Core Team[1]
First appeared August 1993 (1993-08)[2]
Stable release
3.3.2 / October 31, 2016 (2016-10-31)
Typing discipline Dynamic
License GNU GPL v2[3]
Filename extensions .r, .R, .RData, .rds, .rda
Website www.r-project.org
Influenced by
S, Scheme, Common Lisp, XLispStat
Influenced
Julia

R is a programming language and software environment for statistical computing and graphics supported by the R Foundation for Statistical Computing.[4] The R language is widely used among statisticians and data miners for developing statistical software[5] and data analysis.[6] Polls, surveys of data miners, and studies of scholarly literature databases show that R's popularity has increased substantially in recent years.[7]

R is a GNU package.[8] The source code for the R software environment is written primarily in C, Fortran, and R.[9] R is freely available under the GNU General Public License, and pre-compiled binary versions are provided for various operating systems. While R has a command line interface, there are several graphical front-ends available.[10]

History

R is an implementation of the S programming language combined with lexical scoping semantics inspired by Scheme.[11] S was created by John Chambers while at Bell Labs. There are some important differences, but much of the code written for S runs unaltered.[12]

R was created by Ross Ihaka and Robert Gentleman[13] at the University of Auckland, New Zealand, and is currently developed by the R Development Core Team, of which Chambers is a member. R is named partly after the first names of the first two R authors and partly as a play on the name of S.[14] The project was conceived in 1992, with an initial version released in 1995 and a stable beta version in 2000.[15][16][17]

Statistical features

R and its libraries implement a wide variety of statistical and graphical techniques, including linear and nonlinear modeling, classical statistical tests, time-series analysis, classification, clustering, and others. R is easily extensible through functions and extensions, and the R community is noted for its active contributions in terms of packages. Many of R's standard functions are written in R itself, which makes it easy for users to follow the algorithmic choices made. For computationally intensive tasks, C, C++, and Fortran code can be linked and called at run time. Advanced users can write C, C++,[18] Java,[19] .NET[20] or Python code to manipulate R objects directly.[21] R is highly extensible through the use of user-submitted packages for specific functions or specific areas of study. Due to its S heritage, R has stronger object-oriented programming facilities than most statistical computing languages. Extending R is also eased by its lexical scoping rules.[22]

Another strength of R is static graphics, which can produce publication-quality graphs, including mathematical symbols. Dynamic and interactive graphics are available through additional packages.[23]

R has Rd, its own LaTeX-like documentation format, which is used to supply comprehensive documentation, both on-line in a number of formats and in hard copy.[24]

Programming features

R is an interpreted language; users typically access it through a command-line interpreter. If a user types 2+2 at the R command prompt and presses enter, the computer replies with 4, as shown below:

> 2+2
[1] 4

Like other similar languages such as APL and MATLAB, R supports matrix arithmetic. R's data structures include vectors, matrices, arrays, data frames (similar to tables in a relational database) and lists.[25] R's extensible object system includes objects for (among others): regression models, time-series and geo-spatial coordinates. The scalar data type was never a data structure of R.[26] Instead, a scalar is represented as a vector with length one.[27]

R supports procedural programming with functions and, for some functions, object-oriented programming with generic functions. A generic function acts differently depending on the classes of arguments passed to it. In other words, the generic function dispatches the function (method) specific to that class of object. For example, R has a generic print function that can print almost every class of object in R with a simple print(objectname) syntax.[28]

Although used mainly by statisticians and other practitioners requiring an environment for statistical computation and software development, R can also operate as a general matrix calculation toolbox – with performance benchmarks comparable to GNU Octave or MATLAB.[29] Arrays are stored in column-major order.[30]

Packages

The capabilities of R are extended through user-created packages, which allow specialized statistical techniques, graphical devices (such as the ggplot2 package developed by Hadley Wickham), import/export capabilities, reporting tools (knitr, Sweave), etc. These packages are developed primarily in R, and sometimes in Java, C, C++, and Fortran.

A core set of packages is included with the installation of R, with more than 7,801 additional packages (as of January 2016) available at the Comprehensive R Archive Network (CRAN),[31] Bioconductor, Omegahat,[32] GitHub, and other repositories.[33]

The "Task Views" page (subject list) on the CRAN website[34] lists a wide range of tasks (in fields such as Finance, Genetics, High Performance Computing, Machine Learning, Medical Imaging, Social Sciences and Spatial Statistics) to which R has been applied and for which packages are available. R has also been identified by the FDA as suitable for interpreting data from clinical research.[35]

Other R package resources include Crantastic, a community site for rating and reviewing all CRAN packages, and R-Forge, a central platform for the collaborative development of R packages, R-related software, and projects. R-Forge also hosts many unpublished beta packages, and development versions of CRAN packages.[36][37]

The Bioconductor project provides R packages for the analysis of genomic data, such as Affymetrix and cDNA microarray object-oriented data-handling and analysis tools, and has started to provide tools for analysis of data from next-generation high-throughput sequencing methods.[38]

Milestones

The full list of changes is maintained in the "R News" file at CRAN.[39] Some highlights are listed below for several major releases.

Release Date Description
0.16 This is the last alpha version developed primarily by Ihaka and Gentleman. Much of the basic functionality from the "White Book" (see S history) was implemented. The mailing lists commenced on April 1, 1997.
0.49 1997-04-23 This is the oldest source release which is currently available on CRAN.[40] CRAN is started on this date, with 3 mirrors that initially hosted 12 packages.[41] Alpha versions of R for Microsoft Windows and the classic Mac OS are made available shortly after this version.
0.60 1997-12-05 R becomes an official part of the GNU Project. The code is hosted and maintained on CVS.
0.65.1 1999-10-07 First versions of update.packages and install.packages functions for downloading and installing packages from CRAN.[42]
1.0 2000-02-29 Considered by its developers stable enough for production use.[43]
1.4 2001-12-19 S4 methods are introduced and the first version for Mac OS X is made available soon after.
2.0 2004-10-04 Introduced lazy loading, which enables fast loading of data with minimal expense of system memory.
2.1 2005-04-18 Support for UTF-8 encoding, and the beginnings of internationalization and localization for different languages.
2.11 2010-04-22 Support for Windows 64 bit systems.
2.13 2011-04-14 Adding a new compiler function that allows speeding up functions by converting them to byte-code.
2.14 2011-10-31 Added mandatory namespaces for packages. Added a new parallel package.
2.15 2012-03-30 New load balancing functions. Improved serialization speed for long vectors.
3.0 2013-04-03 Support for numeric index values 231 and larger on 64 bit systems.

Interfaces

Graphical user interfaces

A special issue of the Journal of Statistical Software discusses GUIs for R.[46]

Editors and IDEs

Text editors and Integrated development environments (IDEs) with some support for R include: ConTEXT, Eclipse (StatET),[47] Emacs (Emacs Speaks Statistics), LyX (modules for knitr and Sweave), Vim, jEdit,[48] Kate,[49] Revolution R Enterprise DevelopR (part of Revolution R Enterprise),[50] RStudio,[51] Sublime Text, TextMate, Atom, WinEdt (R Package RWinEdt), Tinn-R, Notepad++,[52] Visual Studio[53] and Architect.[54]

Scripting languages

R functionality has been made accessible from several scripting languages such as Python,[55] Perl,[56] Ruby,[57] F#[58] and Julia.[59] Scripting in R itself is possible via a front-end called littler.[60]

useR! conferences

The official annual gathering of R users is called "useR!".[61]

The first such event was useR! 2004 in May 2004, Vienna, Austria.[62] After skipping 2005, the useR conference has been held annually, usually alternating between locations in Europe and North America.[63]

Subsequent conferences have included:[61]

R Journal

The R Journal is the open access, refereed journal of the R project for statistical computing. It features short to medium length articles on the use, and development of R, including packages, programing tips, CRAN news, and foundation news.

Comparison with SAS, SPSS, and Stata

The general consensus is that R compares well with other popular statistical packages, such as SAS, SPSS, and Stata.[64] In a comparison of all basic features for a statistical software R is heads up with the best of statistical software.

In January 2009, the New York Times ran an article about R gaining acceptance among data analysts and presenting a potential threat for the market share occupied by commercial statistical packages, such as SAS.[65]

Commercial support for R

While R is an open source project supported by the community developing it, some companies strive to provide commercial support and/or extensions for their customers. In this section, some examples of those companies are mentioned.

In 2007, Revolution Analytics was founded to provide commercial support for Revolution R, its distribution of R, which also includes components developed by the company. Major additional components include: ParallelR, the R Productivity Environment IDE, RevoScaleR (for big data analysis), RevoDeployR, web services framework, and the ability for reading and writing data in the SAS file format.[66] They also offer a distribution of R designed to comply with established IQ/OQ/PQ criteria which enables clients in the pharmaceutical sector to validate their installation of REvolution R.[67] In 2015, Microsoft Corporation completed the acquisition of Revolution Analytics.[68]

For organizations in highly regulated sectors requiring a validated version of R, Mango Solutions has developed the ValidR product which fully complies with the Food and Drug Administration guidelines for Software verification and validation. They also offer to validate additional packages if the customer demands it and validate customer's self written packages.[69]

In October 2011, Oracle announced the Big Data Appliance, which integrates R, Apache Hadoop, Oracle Linux, and a NoSQL database with the Exadata hardware.[70] Oracle R Enterprise[71] is now one of two components of the "Oracle Advanced Analytics Option"[72] (the other component is Oracle Data Mining).

IBM offers support for in-Hadoop execution of R,[73] and provides a programming model for massively parallel in-database analytics in R.[74]

Other major commercial software systems supporting connections to or integration with R include: JMP,[75] Mathematica,[76] MATLAB,[77] Spotfire,[78] SPSS,[79] Statistica,[80] Platform Symphony,[81] SAS,[82] Tableau Software,[83] Esri ArcGis,[84] Dundas[85] and Statgraphics.[86]

Tibco offers a runtime version R as a part of Spotfire.[87]

Examples

Basic syntax

The following examples illustrate the basic syntax of the language and use of the command-line interface.

In R, the widely preferred[88] assignment operator is an arrow made from two characters <-, although = can be used instead.[89]

> x <- c(1,2,3,4,5,6)   # Create ordered collection (vector)
> y <- x^2              # Square the elements of x
> print(y)              # print (vector) y
[1]  1  4  9 16 25 36
> mean(y)               # Calculate average (arithmetic mean) of (vector) y; result is scalar
[1] 15.16667
> var(y)                # Calculate sample variance
[1] 178.9667
> lm_1 <- lm(y ~ x)     # Fit a linear regression model "y = f(x)" or "y = B0 + (B1 * x)"
                        # store the results as lm_1
> print(lm_1)           # Print the model from the (linear model object) lm_1

Call:
lm(formula = y ~ x)

Coefficients:
(Intercept)            x
     -9.333        7.000

> summary(lm_1)          # Compute and print statistics for the fit
                         # of the (linear model object) lm_1

Call:
lm(formula = y ~ x)

Residuals:
1       2       3       4       5       6
3.3333 -0.6667 -2.6667 -2.6667 -0.6667  3.3333

Coefficients:
            Estimate Std. Error t value Pr(>|t|)
(Intercept)  -9.3333     2.8441  -3.282 0.030453 *
x             7.0000     0.7303   9.585 0.000662 ***
---
Signif. codes:  0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1

Residual standard error: 3.055 on 4 degrees of freedom
Multiple R-squared: 0.9583,	Adjusted R-squared: 0.9478
F-statistic: 91.88 on 1 and 4 DF,  p-value: 0.000662

> par(mfrow=c(2, 2))     # Request 2x2 plot layout
> plot(lm_1)             # Diagnostic plot of regression model

Structure of a function

The ease of function creation by the user is one of the strengths of using R. Objects remain local to the function, which can be returned as any data type.[90] Below is an example of the structure of a function:

functionname <- function(arg1, arg2, ... ){ # declare name of function and function arguments
  statements                                # declare statements
  return(object)                            # declare object data type
}

sumofsquares <- function(x){ # a user-created function
  return(sum(x^2))           # return the sum of squares of the elements of vector x
}
> sumofsquares(1:3)
[1] 14

Mandelbrot set

Short R code calculating Mandelbrot set through the first 20 iterations of equation z = z2 + c plotted for different complex constants c. This example demonstrates:

install.packages("caTools")  # install external package
library(caTools)           # external package providing write.gif function
jet.colors <- colorRampPalette(c("#00007F", "blue", "#007FFF", "cyan", "#7FFF7F",
                                 "yellow", "#FF7F00", "red", "#7F0000"))
dx <- 400                  # define width
dy <- 400                  # define height
C <- complex( real=rep(seq(-2.2, 1.0, length.out=dx), each=dy ),
              imag=rep(seq(-1.2, 1.2, length.out=dy), dx ) )
C <- matrix(C,dy,dx)       # reshape as square matrix of complex numbers
Z <- 0                     # initialize Z to zero
X <- array(0, c(dy,dx,20)) # initialize output 3D array
for (k in 1:20) {          # loop with 20 iterations
  Z <- Z^2+C               # the central difference equation
  X[,,k] <- exp(-abs(Z))   # capture results
}
write.gif(X, "Mandelbrot.gif", col=jet.colors, delay=900)

See also

References

  1. Hornik, Kurt (November 26, 2015). "R FAQ". The Comprehensive R Archive Network. 2.1 What is R?. Retrieved 2015-12-06.
  2. Ihaka, Ross (1998). R : Past and Future History (PDF) (Technical report). Statistics Department, The University of Auckland, Auckland, New Zealand.
  3. "R license". r-project. Retrieved 6 June 2016.
  4. R language and environment
    • Hornik, Kurt (November 26, 2015). "R FAQ". The Comprehensive R Archive Network. 2.1 What is R?. Retrieved 2015-12-06.
    R Foundation
    • Hornik, Kurt (November 26, 2015). "R FAQ". The Comprehensive R Archive Network. 2.13 What is the R Foundation?. Retrieved 2015-12-06.
    The R Core Team asks authors who use R in their data analysis to cite the software using:
    • R Core Team (2016). R: A language and environment for statistical computing. R Foundation for Statistical Computing, Vienna, Austria. URL http://www.R-project.org/.
  5. widely used
  6. Vance, Ashlee (2009-01-06). "Data Analysts Captivated by R's Power". New York Times. Retrieved 2009-04-28. R is also the name of a popular programming language used by a growing number of data analysts inside corporations and academia. It is becoming their lingua franca...
  7. R's popularity
  8. GNU project
    • "GNU R". Free Software Foundation (FSF) Free Software Directory. 19 July 2010. Retrieved 13 November 2012.
    • R Project (n.d.). "What is R?". Retrieved 2009-04-28.
  9. "Wrathematics" (27 August 2011). "How Much of R Is Written in R". librestats. Retrieved 2011-12-01.
  10. "7 of the Best Free Graphical User Interfaces for R". linuxlinks.com. Retrieved 9 February 2016.
  11. Morandat, Frances; Hill, Brandon; Osvald, Leo; Vitek, Jan (2012). "Evaluating the design of the R language: objects and functions for data analysis" (PDF). ECOOP'12 Proceedings of the 26th European conference on Object-Oriented Programming. Retrieved 2016-05-17.
  12. "R: What is R?". R-Project. Retrieved 7 February 2016.
  13. Gentleman, Robert (9 December 2006). "Individual Expertise profile of Robert Gentleman". Archived from the original on 23 July 2011. Retrieved 2009-07-20.
  14. Kurt Hornik. The R FAQ: Why is R named R?. ISBN 3-900051-08-9. Retrieved 2008-01-29.
  15. "R : Past and Future History -- A Free Software Project". cran.r-project.org. Retrieved 2016-05-30.
  16. "Over 16 years of R Project history". Revolutions. Retrieved 2016-05-30.
  17. Ihaka, Ross. "The R Project: A Brief History and Thoughts About the Future" (PDF). stat.auckland.ac.nz.
  18. Eddelbuettel, Dirk; Francois, Romain (2011). "Rcpp: Seamless R and C++ Integration". Journal of Statistical Software. 40 (8).
  19. Temple Lang, Duncan (6 November 2010). "Calling R from Java" (PDF). Nuiton. Retrieved 18 September 2013.
  20. .NET Framework
  21. Intellipaat. "Choosing between SAS, R and Python for Big Data Solution - Intellipaat Blog". intellipaat.com. Retrieved 2 December 2016.
  22. Jackman, Simon (Spring 2003). "R For the Political Methodologist" (PDF). The Political Methodologist. Political Methodology Section, American Political Science Association. 11 (1): 20–22. Archived from the original (PDF) on 2006-07-21. Retrieved 2006-08-03.
  23. "CRAN Task View: Graphic Displays & Dynamic Graphics & Graphic Devices & Visualization". The Comprehensive R Archive Network. Retrieved 2011-08-01.
  24. "Rd format". hep.by. Retrieved 9 February 2016.
  25. Dalgaard, Peter (2002). Introductory Statistics with R. New York, Berlin, Heidelberg: Springer-Verlag. pp. 10–18, 34. ISBN 0387954759.
  26. Ihaka, Ross; Gentlman, Robert (Sep 1996). "R: A Language for Data Analysis and Graphics" (PDF). Journal of Computational and Graphical Statistics. American Statistical Association. 5 (3): 299–314. doi:10.2307/1390807. Retrieved 2014-05-12.
  27. "Data structures · Advanced R.". adv-r.had.co.nz. Retrieved 2016-09-26.
  28. R Core Team. "Print Values". R Documentation. R Foundation for Statistical Computing. Retrieved 30 May 2016.
  29. "Speed comparison of various number crunching packages (version 2)". SciView. 2003. Retrieved 2007-11-03.
  30. An Introduction to R, Section 5.1: Arrays. Retrieved in 2010-03 from https://cran.r-project.org/doc/manuals/R-intro.html#Arrays.
  31. "The Comprehensive R Archive Network".
  32. "Omegahat.net". Omegahat.net. Retrieved 2016-09-09.
  33. packages available from repositories
  34. "CRAN Task Views". cran.r-project.org. Retrieved 2014-07-03.
  35. "FDA: R OK for drug trials".
  36. "It's crantastic!".
  37. "R-Forge: Welcome".
  38. "Orchestrating high-throughput genomic analysis with Bioconductor". Nature methods. Nature Publishing Group. 12 (2): 115–121. 2015. doi:10.1038/nmeth.3252.
  39. "R News". cran.r-project.org. Retrieved 2014-07-03.
  40. "Index of /src/base/R-0".
  41. "ANNOUNCE: CRAN".
  42. https://cran.r-project.org/src/base/NEWS.0
  43. Peter Dalgaard. "R-1.0.0 is released". Retrieved 2009-06-06.
  44. "Online R editor - DataJoy". www.getdatajoy.com. Retrieved 2015-12-12.
  45. "Deducer Manual". www.deducer.org. Retrieved 2014-07-03.
  46. Valero-Mora, Pedro. "Graphical User Interfaces for R". Journal of Statistical Software (by Pedro M. Valero-Mora, and Ruben Ledesma).
  47. Stephan Wahlbrink. "StatET: Eclipse based IDE for R". Retrieved 2009-09-26.
  48. Jose Claudio Faria. "R syntax". Retrieved 2007-11-03.
  49. "Syntax Highlighting". Kate Development Team. Archived from the original on 2008-07-07. Retrieved 2008-07-09.
  50. "R PEnterprise DevelopR". Revolution Analytics. Archived from the original on 18 April 2014. Retrieved 2014-04-17.
  51. J. J. Alaire and colleagues. "RStudio: new IDE for R". Retrieved 2011-08-04.
  52. "NppToR: R in Notepad++". sourceforge.net. 8 May 2013. Retrieved 2013-09-18.
  53. "R Tools for Visual Studio". www.visualstudio.com. Retrieved 2016-07-18.
  54. "Architect: integrated development environment for data science". Open Analytics. Retrieved 2015-07-30.
  55. Gautier, Laurent (21 October 2012). "A simple and efficient access to R from Python". Retrieved 18 September 2013.
  56. Florent Angly. "Statistics::R - Perl interface with the R statistical program - metacpan.org".
  57. alexgutteridge. "GitHub - alexgutteridge/rsruby: Ruby - R bridge.". GitHub.
  58. BlueMountain Capital. "F# R Type Provider".
  59. Julia
  60. Eddelbuettel, Dirk (14 July 2011). "littler: a scripting front-end for GNU R". Retrieved 2013-09-18.
  61. 1 2 "useR!". Retrieved from https://www.r-project.org/conferences.html
  62. "useR! 2004 - The R User Conference". 27 May 2004. Retrieved 2013-09-18.
  63. R Project (9 August 2013). "R-related Conferences". Retrieved 2013-09-18.
  64. Burns, Patrick (27 February 2007). "Comparison of R to SAS, Stata and SPSS" (PDF). Retrieved 2013-09-18.
  65. R as competition for commercial statistical packages
  66. Morgan, Timothy Prickett (2011-02-07). "'Red Hat for stats' goes toe-to-toe with SAS". The Register, 7 February 2011. Retrieved from http://www.theregister.co.uk/2011/02/07/revolution_r_sas_challenge/.
  67. "Analyzing clinical trial data for FDA submissions with R". Revolution Analytics. January 14, 2009. Retrieved April 15, 2016.
  68. Sirosh, Joseph. "Microsoft Closes Acquisition of Revolution Analytics". blogs.technet.com. Microsoft. Retrieved 2015-11-22.
  69. "ValidR". Mongo Solutions. Retrieved April 15, 2016.
  70. Oracle Corporation's Big Data Appliance
  71. Chris Kanaracus (2012); Oracle Stakes Claim in R With Advanced Analytics Launch, PC World, February 8, 2012.
  72. Doug Henschen (2012); Oracle Stakes Claim in R With Advanced Analytics Launch, InformationWeek, April 4, 2012.
  73. "What's New in IBM InfoSphere BigInsights v2.1.2". IBM. Retrieved 8 May 2014.
  74. "IBM PureData System for Analytics" (PDF). IBM. Retrieved 2014-05-08.
  75. JMP (2013). "Analytical Application Development with JMP". SAS Institute Inc. Retrieved 2013-09-19.
  76. "New in Mathematica 9: Built-in Integration with R". Wolfram. 2013. Retrieved 2013-09-18.
  77. Henson, Robert (23 July 2013). "MATLAB R Link". The MathWorks, Inc. Retrieved 2013-09-18.
  78. Gibson, Brendan (8 March 2010). "Spotfire Integration with S+ and R". Spotfire. Retrieved 2013-09-19.
  79. Clark, Mike (October 2007). "Introduction to SPSS 16". University of North Texas Research and Statistical Support. Retrieved 19 September 2013.
  80. StatSoft (n.d.). "Using the R Language Platform". StatSoft Inc. Retrieved 2013-09-20.
  81. Parmar, Onkar (31 March 2011). ""R" integrated with Symphony". Platform Computing Corporation. Retrieved 2013-09-20.
  82. SAS (11 November 2010). "Calling Functions in the R Language (SAS/IML)". Retrieved 2013-09-20.
  83. Tableau (17 December 2013). "R is Here!". Retrieved 2015-01-29.
  84. "Building a Bridge to the R Community". Esri. 20 July 2015. Retrieved 14 April 2016.
  85. Dundas. "R Integrated with Dundas BI". Retrieved 2015-07-30.
  86. "Statgraphics R Interface".
  87. Tibco. "Unleash the agility of R for the Enterprise". Retrieved 2014-05-15.
  88. most used assignment operator in R is <-
  89. R Development Core Team. "Assignments with the = Operator". Retrieved 14 June 2012.
  90. Kabacoff, Robert (2012). "Quick-R: User-Defined Functions". statmethods.net. Retrieved 2013-10-28.
  91. Ostrouchov, G., Chen, W.-C., Schmidt, D., Patel, P. (2012). "Programming with Big Data in R".

External links

This article is issued from Wikipedia - version of the 12/3/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.