R (programming language)

From Wikipedia, the free encyclopedia

R
R logo.svg
R terminal.jpg
R terminal
ParadigmsMulti-paradigm: procedural, object-oriented, functional, reflective, imperative, array[1]
Designed byRoss Ihaka and Robert Gentleman
DeveloperR Core Team
First appearedAugust 1993; 28 years ago (1993-08)
Stable release
4.1.1[2] / 10 August 2021; 21 days ago (10 August 2021)
Typing disciplineDynamic
LicenseGNU GPL v2
Filename extensions
Websitewww.r-project.org Edit this at Wikidata
Influenced by
Influenced
Julia[6]

R is a programming language and free software environment for statistical computing and graphics supported by the R Core Team and the R Foundation for Statistical Computing.[7] The R language is widely used among statisticians and data miners for developing statistical software and data analysis. Polls, data mining surveys, and studies of scholarly literature databases show substantial increases in R's popularity;[8] since August 2021, R ranks 14th in the TIOBE index, a measure of popularity of programming languages.[9]

The official R software environment is a GNU package. It is written primarily in C, Fortran, and R itself (thus, it is partially self-hosting) and is freely available under the GNU General Public License. Pre-compiled executables are provided for various operating systems. Although R has a command line interface, there are several third-party graphical user interfaces, such as RStudio, an integrated development environment, and Jupyter, a notebook interface.

History[]

R is an implementation of the S programming language combined with lexical scoping semantics, inspired by Scheme.[1] S was created by John Chambers in 1976 while at Bell Labs. A commercial version of S was offered as S-PLUS starting in 1988.

Much of the code written for S-PLUS runs unaltered in R.[10]

In 1991 Ross Ihaka and Robert Gentleman at the University of Auckland, New Zealand, began an alternative implementation of the basic S language, completely independent of S-PLUS, which they began publicizing in 1993.[11] It was named partly after the first names of the first two R authors and partly as a play on the name of S.[12] In 1995, convinced Ihaka and Gentleman to make R free and open-source software under Version 2 of the GNU General Public License.[13][14] The R Core Team was formed in 1997 to further develop the language.[12] As of 2021, it consisted of Gentleman, Ihaka, and Maechler, plus , John Chambers, Peter Dalgaard, , , , , , Thomas Lumley, , , , Brian Ripley, , , Luke Tierney, and . , , , , and were also formerly members.[15]

The first official release came in 1995.[11] The Comprehensive R Archive Network (CRAN) was officially announced 23 April 1997 with 3 mirrors and 12 contributed packages.[16] The first official "stable beta" version (v1.0) was released 29 February 2000.[17][18]

Statistical features[]

R and its libraries implement various statistical and graphical techniques, including linear and nonlinear modeling, classical statistical tests, spatial and 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,[citation needed] 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++,[19] Java,[20] .NET[21] or Python code to manipulate R objects directly.[22] 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.[citation needed] Extending R is also eased by its lexical scoping rules.[23]

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.[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

This calculation is interpreted as the sum of two single-element vectors, resulting in a single-element vector. The prefix [1] indicates that the list of elements following it on the same line starts with the first element of the vector (a feature that is useful when the output extends over multiple lines).

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] Arrays are stored in column-major order.[26] 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.[27] Instead, a scalar is represented as a vector with length one.[28]

Many features of R derive from Scheme. R uses S-expressions to represent both data and code.[citation needed] Functions are first-class and can be manipulated in the same way as data objects, facilitating meta-programming, and allow multiple dispatch. Variables in R are lexically scoped and dynamically typed.[29] Function arguments are passed by value, and are lazy—that is to say, they are only evaluated when they are used, not when the function is called.[30]

R supports procedural programming with functions and, for some functions, object-oriented programming with generic functions.[31] 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.[32]

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.[33]

Packages[]

The capabilities of R are extended through user-created[34] packages, which allow specialised statistical techniques, graphical devices, import/export capabilities, reporting tools (RMarkdown, knitr, Sweave), etc. The large number of packages available for R, and the ease of installing and using them, has been cited as a major factor in driving the widespread adoption of the language in data science.[35][36][37][38][39] The R packaging system is also used by researchers to create compendia to organise research data, code and report files in a systematic way for sharing and public archiving.[40]

A core set of packages is included with the installation of R, with more than 15,000 additional packages (as of September 2018) available at the Comprehensive R Archive Network (CRAN),[41] Bioconductor, Omegahat,[42] GitHub, and other repositories.[43] R packages are documented by the authors using LaTeX-like markdown files.[44][45]

The "Task Views" page (subject list) on the CRAN website[46] 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.[47]

Other R package resources include R-Forge,[48] 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. Microsoft maintains a daily snapshot of CRAN, that dates back to Sept. 17, 2014.[49]

The Bioconductor project provides R packages for the analysis of genomic data. This includes object-oriented data-handling and analysis tools for data from Affymetrix, cDNA microarray, and next-generation high-throughput sequencing methods.[50]

A group of packages called the Tidyverse, which can be considered a "dialect of the R language", is increasingly popular in the R ecosystem.[note 1] The group of packages strives to provide a cohesive collection of functions to deal with common data science tasks, including data import, cleaning, transformation and visualisation (notably with the ggplot2 package).

R is one of 5 languages with an Apache Spark API, the others being Scala, Java, Python, and SQL.[51][52]

Milestones[]

A list of changes in R releases is maintained in various "news" files at CRAN.[53] 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.[54] CRAN is started on this date, with 3 mirrors that initially hosted 12 packages.[55] Alpha versions of R for Microsoft Windows and the classic Mac OS are made available shortly after this version.[citation needed]
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.[56]
1.0 2000-02-29 Considered by its developers stable enough for production use.[57]
1.4 2001-12-19 S4 methods are introduced and the first version for Mac OS X is made available soon after.
1.8 2003-10-08 Introduced a flexible condition handling mechanism for signalling and handling condition objects.
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.6.2 2008-02-08 Last version to support Windows 95, 98, Me and NT 4.0[58]
2.11 2010-04-22 Support for Windows 64-bit systems.
2.12.2 2011-02-25 Last version to support Windows 2000[59]
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 serialisation speed for long vectors.
3.0.0 2013-04-03 Support for numeric index values 231 and larger on 64-bit systems.
3.3.3 2017-03-06 Last version to support Microsoft Windows XP.
3.4.0 2017-04-21 Just-in-time compilation (JIT) of functions and loops to byte-code enabled by default.
3.5.0 2018-04-23 Packages byte-compiled on installation by default. Compact internal representation of integer sequences. Added a new serialisation format to support compact internal representations.
3.6.0 2019-04-26 Improved sampling from a discrete uniform distribution, which was noticeably non-uniform on large populations.[60] New serialisation format supported since 3.5.0 becomes the default.
4.0.0 2020-04-24 R now uses a stringsAsFactors = FALSE default, and hence by default no longer converts strings to factors in calls to data.frame() and read.table(). Reference counting is used for tracking object sharing, which reduces the need for copying objects. New syntax for raw string constants.
4.1.0 2021-05-18 Introduced |> as the pipe operator for base R syntax (similar to the %>% operator of the magrittr package) and the anonymous function shortcut syntax \(x) x+1

Interfaces[]

There are various applications than can be used to edit or run R code.[61]

In early years users preferred to run R via the command line console,[62] but modern users vastly prefer using an IDE.[63] IDEs for R include (in alphabetical order) Rattle GUI, R Commander, RKWard, RStudio, and Tinn-R.[62] R is also supported in multi-purpose IDEs such as Eclipse via the StatET plugin,[64] and Visual Studio via the R Tools for Visual Studio.[65] Of these, Rstudio is the most commonly used.[63]

Editors that support R include Emacs, Vim (Nvim-R plugin),[66] Kate,[67] LyX,[68] Notepad++,[69] Visual Studio Code, WinEdt,[70] and Tinn-R.[71] Jupyter Notebook can also be configured to edit and run R code.[72]

R functionality is accessible from several scripting languages such as Python,[73] Perl,[74] Ruby,[75] F#,[76] and Julia.[77] Interfaces to other, high-level programming languages, like Java[78] and .NET C#[79][80] are available as well.

Implementations[]

The main R implementation is written in R, C, and Fortran,[81] and there are several other implementations aimed at improving speed or increasing extensibility. A closely related implementation is pqR (pretty quick R) by Radford M. Neal with improved memory management and support for automatic multithreading. Renjin and FastR are Java implementations of R for use in a Java Virtual Machine. CXXR, rho, and Riposte[82] are implementations of R in C++. Renjin, Riposte, and pqR attempt to improve performance by using multiple processor cores and some form of deferred evaluation.[83] Most of these alternative implementations are experimental and incomplete, with relatively few users, compared to the main implementation maintained by the R Development Core Team.

TIBCO built a runtime engine called TERR, which is part of Spotfire.[84]

Microsoft R Open is a fully compatible R distribution with modifications for multi-threaded computations.[85]

Communities[]

R has local communities worldwide for users to network, share ideas, and learn.[86][87]

There are a growing number of R events bringing its users together, such as conferences (e.g. useR!, WhyR?, conectaR, SatRdays),[88][89] meetups,[90] as well as R-Ladies groups[91] that promote gender diversity and the R Foundation taskforce on women and other under-represented groups.[92]

useR! conferences[]

The official annual gathering of R users is called "useR!".[93] The first such event was useR! 2004 in May 2004, Vienna, Austria.[94] After skipping 2005, the useR! conference has been held annually, usually alternating between locations in Europe and North America.[95] Subsequent conferences have included:[93]

  • useR! 2006, Vienna, Austria
  • useR! 2007, Ames, Iowa, USA
  • useR! 2008, Dortmund, Germany
  • useR! 2009, Rennes, France
  • useR! 2010, Gaithersburg, Maryland, USA
  • useR! 2011, Coventry, United Kingdom
  • useR! 2012, Nashville, Tennessee, USA
  • useR! 2013, Albacete, Spain
  • useR! 2014, Los Angeles, California, USA
  • useR! 2015, Aalborg, Denmark
  • useR! 2016, Stanford, California, USA
  • useR! 2017, Brussels, Belgium
  • useR! 2018, Brisbane, Australia
  • useR! 2019, Toulouse, France
  • useR! 2020, St. Louis, Missouri, USA (took place online due to COVID-19 pandemic)

Future conferences planned are as follows:[93][96]

  • useR! 2021, Zurich, Switzerland

The 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, programming tips, CRAN news, and foundation news.

Comparison with SAS, SPSS, and Stata[]

R is comparable to popular commercial statistical packages such as SAS, SPSS, and Stata, but R is available to users at no charge under a free software license.[97]

In January 2009, the New York Times ran an article charting the growth of R, the reasons for its popularity among data scientists and the threat it poses to commercial statistical packages such as SAS.[98] In June 2017 data scientist Robert Muenchen published a more in-depth comparison between R and other software packages, "The Popularity of Data Science Software".[99]

R is more procedural-code oriented than either SAS or SPSS, both of which make heavy use of pre-programmed procedures (called "procs") that are built-in to the language environment and customized by parameters of each call. R generally processes data in-memory, which limits its usefulness in processing extremely large files.[100]

Commercial support for R[]

Although R is an open-source project supported by the community developing it, some companies strive to provide commercial support and extensions for their customers. This section gives some examples of such companies.

In 2007, Richard Schultz, Martin Schultz, Steve Weston and Kirk Mettler founded Revolution Analytics to provide commercial support for Revolution R, their 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.[101] Revolution Analytics 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.[102] In 2015, Microsoft Corporation completed the acquisition of Revolution Analytics.[103] and has since integrated the R programming language into SQL Server 2016, SQL Server 2017, SQL Server 2019, Power BI, Azure SQL Managed Instance, Azure Cortana Intelligence, Microsoft ML Server and Visual Studio 2017.[104]

In October 2011, Oracle announced the Big Data Appliance, which integrates R, Apache Hadoop, Oracle Linux, and a NoSQL database with Exadata hardware.[105] As of 2012, Oracle R Enterprise[106] became one of two components of the "Oracle Advanced Analytics Option"[107] (alongside Oracle Data Mining).[citation needed]

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

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

Mango Solutions offers a validation package for R, ValidR,[111][112] to make it compliant with drug approval agencies, like FDA. These agencies allow for the use of any statistical software in submissions, if only the software is validated, either by the vendor or sponsor itself.[113]

Examples[]

Basic syntax[]

The following examples illustrate the basic syntax of the language and use of the command-line interface. (An expanded list of standard language features can be found in the R manual, "An Introduction to R".[114])

In R, the generally preferred assignment operator is an arrow made from two characters <-, although = can be used in some cases.[115][116]

> x <- 1:6 # Create a numeric vector in the current environment
> y <- x^2 # Create vector based on the values in x.
> print(y) # Print the vector’s contents.
[1]  1  4  9 16 25 36

> z <- x + y # Create a new vector that is the sum of x and y
> z # return the contents of z to the current environment.
[1]  2  6 12 20 30 42

> z_matrix <- matrix(z, nrow=3) # Create a new matrix that turns the vector z into a 3x2 matrix object
> z_matrix 
     [,1] [,2]
[1,]    2   20
[2,]    6   30
[3,]   12   42

> 2*t(z_matrix)-2 # Transpose the matrix, multiply every element by 2, subtract 2 from each element in the matrix, and return the results to the terminal.
     [,1] [,2] [,3]
[1,]    2   10   22
[2,]   38   58   82

> new_df <- data.frame(t(z_matrix), row.names=c('A','B')) # Create a new data.frame object that contains the data from a transposed z_matrix, with row names 'A' and 'B'
> names(new_df) <- c('X','Y','Z') # set the column names of new_df as X, Y, and Z.
> print(new_df)  #print the current results.
   X  Y  Z
A  2  6 12
B 20 30 42

> new_df$Z #output the Z column
[1] 12 42

> new_df$Z==new_df['Z'] && new_df[3]==new_df$Z # the data.frame column Z can be accessed using $Z, ['Z'], or [3] syntax, and the values are the same. 
[1] TRUE

> attributes(new_df) #print attributes information about the new_df object
$names
[1] "X" "Y" "Z"

$row.names
[1] "A" "B"

$class
[1] "data.frame"

> attributes(new_df)$row.names <- c('one','two') ## access and then change the row.names attribute; can also be done using rownames()
> new_df
     X  Y  Z
one  2  6 12
two 20 30 42

Structure of a function[]

One of R's strengths is the ease of creating new functions. Objects in the function body remain local to the function, and any data type may be returned.[117] Here is an example user-created function:

# Declare function “f” with parameters “x”, “y“
# that returns a linear combination of x and y.
f <- function(x, y) {
  z <- 3 * x + 4 * y
  return(z) ## the return() function is optional here
}
> f(1, 2)
[1] 11

> f(c(1,2,3), c(5,3,4))
[1] 23 18 25

> f(1:3, 4)
[1] 19 22 25

Modeling and plotting[]

The R language has built-in support for data modeling and graphics. The following example shows how R can easily generate and plot a linear model with residuals.

> x <- 1:6 # Create x and y values
> y <- x^2  
> model <- lm(y ~ x)  # Linear regression model y = A + B * x.
> summary(model)  # Display an in-depth summary of the model.

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))  # Create a 2 by 2 layout for figures.
> plot(model)  # Output diagnostic plots of the model.

Diagnostic plots from plotting “model” (q.v. “plot.lm()” function). Notice the mathematical notation allowed in labels (lower left plot).

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:

  • use of community-developed external libraries (called packages), in this case caTools package
  • handling of complex numbers
  • multidimensional arrays of numbers used as basic data type, see variables C, Z and X.
install.packages("caTools")  # install external package
library(caTools)             # external package providing write.gif function
jet.colors <- colorRampPalette(c("red", "blue", "#007FFF", "cyan", "#7FFF7F",
                                 "yellow", "#FF7F00", "red", "#7F0000"))
dx <- 1500                    # define width
dy <- 1400                    # 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 = 100)

"Mandelbrot.gif" – graphics created in R with 14 lines of code in Example 2

See also[]

Notes[]

  1. ^ As of 2020-06-13, Metacran listed 7 of the 8 core packages of the Tidyverse in the list of most download R packages.

References[]

  1. ^ Jump up to: a b Morandat, Frances; Hill, Brandon; Osvald, Leo; Vitek, Jan (11 June 2012). "Evaluating the design of the R language: objects and functions for data analysis". European Conference on Object-Oriented Programming. 2012: 104–131. doi:10.1007/978-3-642-31057-7_6. Retrieved 17 May 2016 – via SpringerLink.
  2. ^ "R 4.1.1 is released"; author name string: Peter Dalgaard; publication date: 10 August 2021; retrieved: 10 August 2021.
  3. ^ "R scripts". mercury.webster.edu. Retrieved 17 July 2021.
  4. ^ "R Data Format Family (.rdata, .rda)". www.loc.gov. 9 June 2017. Retrieved 17 July 2021.
  5. ^ Khomtchouk, Bohdan B.; Weitz, Edmund; Karp, Peter D.; Wahlestedt, Claes (31 December 2016). "How the strengths of Lisp-family languages facilitate building complex and flexible bioinformatics applications". Briefings in Bioinformatics. 19 (3): 537–543. doi:10.1093/bib/bbw130. ISSN 1467-5463. PMC 5952920. PMID 28040748.
  6. ^ "Introduction". The Julia Manual. Archived from the original on 20 June 2018. Retrieved 5 August 2018.
  7. ^ R language and environment
    • Hornik, Kurt (4 October 2017). "R FAQ". The Comprehensive R Archive Network. 2.1 What is R?. Retrieved 6 August 2018.
    R Foundation
    • Hornik, Kurt (4 October 2017). "R FAQ". The Comprehensive R Archive Network. 2.13 What is the R Foundation?. Retrieved 6 August 2018.
    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/.
  8. ^ R's popularity
  9. ^ "TIOBE Index - The Software Quality Company". TIOBE. Retrieved 16 August 2021.
  10. ^ "R: What is R?". R-Project. Retrieved 7 August 2018.
  11. ^ Jump up to: a b Ihaka, Ross (1998). R : Past and Future History (PDF) (Technical report). Interface '98: Statistics Department, The University of Auckland, Auckland, New Zealand.CS1 maint: location (link)
  12. ^ Jump up to: a b Kurt Hornik. The R FAQ: Why R?. ISBN 3-900051-08-9. Retrieved 29 January 2008.
  13. ^ "R license". r-project. Retrieved 5 August 2018.
  14. ^ GNU project
    • "GNU R". Free Software Foundation (FSF) Free Software Directory. 23 April 2018. Retrieved 7 August 2018.
    • R Project (n.d.). "What is R?". Retrieved 7 August 2018.
  15. ^ "R: Contributors". R Project. Retrieved 14 July 2021.
  16. ^ Kurt Hornik (23 April 1997). "Announce: CRAN". r-help. Wikidata Q101068595..
  17. ^ "Over 16 years of R Project history". Revolutions. Retrieved 30 May 2016.
  18. ^ Ihaka, Ross. "The R Project: A Brief History and Thoughts About the Future" (PDF). stat.auckland.ac.nz.
  19. ^ Eddelbuettel, Dirk; Francois, Romain (2011). "Rcpp: Seamless R and C++ Integration". Journal of Statistical Software. 40 (8). doi:10.18637/jss.v040.i08.
  20. ^ "nution-j2r: Java library to invoke R native functions". Retrieved 13 September 2018.
  21. ^ .NET Framework
  22. ^ R manuals. "Writing R Extensions". r-project.org. Retrieved 13 September 2018.
  23. ^ 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 21 July 2006. Retrieved 13 September 2018.
  24. ^ Lewin-Koh, Nicholas (7 January 2015). "CRAN Task View: Graphic Displays & Dynamic Graphics & Graphic Devices & Visualization". The Comprehensive R Archive Network. Retrieved 13 September 2018. Cite journal requires |journal= (help)
  25. ^ Dalgaard, Peter (2002). Introductory Statistics with R. New York, Berlin, Heidelberg: Springer-Verlag. pp. 10–18, 34. ISBN 0387954759.
  26. ^ An Introduction to R, Section 5.1: Arrays. Retrieved in 2010-03 from https://cran.r-project.org/doc/manuals/R-intro.html#Arrays.
  27. ^ Ihaka, Ross; Gentlman, Robert (September 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. JSTOR 1390807. Retrieved 12 May 2014.
  28. ^ "Data structures · Advanced R." adv-r.had.co.nz. Retrieved 26 September 2016.
  29. ^ Mount, John (25 February 2012). "Why I don't like Dynamic Typing". Win Vector LLC. Retrieved 17 July 2021.
  30. ^ "Functions · Advanced R." adv-r.had.co.nz.
  31. ^ White, Homer. 14.1 Programming Paradigms | Beginning Computer Science with R.
  32. ^ R Core Team. "Print Values". R Documentation. R Foundation for Statistical Computing. Retrieved 30 May 2016.
  33. ^ "Speed comparison of various number crunching packages (version 2)". SciView. 2003. Archived from the original on 16 October 2007. Retrieved 3 November 2007.
  34. ^ Hadley, Wickham; Bryan, Jenny. "R packages: Organize, Test, Document, and Share Your Code". Cite journal requires |journal= (help)
  35. ^ Chambers, John M. (2020). "S, R, and Data Science". The R Journal. 12 (1): 462–476. doi:10.32614/RJ-2020-028. ISSN 2073-4859.
  36. ^ Vance, Ashlee (6 January 2009). "Data Analysts Captivated by R's Power". New York Times.
  37. ^ Tippmann, Sylvia (29 December 2014). "Programming tools: Adventures with R". Nature News. 517 (7532): 109–110. doi:10.1038/517109a. PMID 25557714.
  38. ^ Thieme, Nick (2018). "R generation". Significance. 15 (4): 14–19. doi:10.1111/j.1740-9713.2018.01169.x. ISSN 1740-9713.
  39. ^ widely used
  40. ^ Marwick, Ben; Boettiger, Carl; Mullen, Lincoln (26 August 2017). "Packaging data analytical work reproducibly using R (and friends)". PeerJ Preprints. doi:10.7287/peerj.preprints.3192v1. ISSN 2167-9843.
  41. ^ "The Comprehensive R Archive Network". Retrieved 16 September 2018.
  42. ^ "Omegahat.net". Omegahat.net. Retrieved 16 September 2018.
  43. ^ packages available from repositories
  44. ^ Wickham, Hadley; Bryan, Jennifer. Chapter 10 Object documentation | R Packages.
  45. ^ "Rd formatting". cran.r-project.org. Retrieved 16 August 2021.
  46. ^ "CRAN Task Views". cran.r-project.org. Retrieved 16 September 2018.
  47. ^ "FDA: R OK for drug trials". Retrieved 16 September 2018.
  48. ^ "R-Forge: Welcome". Retrieved 16 September 2018.
  49. ^ "CRAN Time Machine. MRAN". Retrieved 26 December 2019.
  50. ^ Huber, W; Carey, VJ; Gentleman, R; Anders, S; Carlson, M; Carvalho, BS; Bravo, HC; Davis, S; Gatto, L; Girke, T; Gottardo, R; Hahne, F; Hansen, KD; Irizarry, RA; Lawrence, M; Love, MI; MacDonald, J; Obenchain, V; Oleś, AK; Pagès, H; Reyes, A; Shannon, P; Smyth, GK; Tenenbaum, D; Waldron, L; Morgan, M (2015). "Orchestrating high-throughput genomic analysis with Bioconductor". Nature Methods. Nature Publishing Group. 12 (2): 115–121. doi:10.1038/nmeth.3252. PMC 4509590. PMID 25633503.
  51. ^ "Spark API Documentation". Spark.
  52. ^ "SparkR (R on Spark)". Spark.
  53. ^ Changes in versions 3.0.0 onward: "R News". cran.r-project.org. Retrieved 3 July 2014. Earlier change logs (by major release number):
    • "NEWS". cran.r-project.org. Retrieved 28 June 2020.
    • "NEWS.3". cran.r-project.org. Retrieved 28 June 2020.
    • "NEWS.2". cran.r-project.org. Retrieved 8 April 2017.
    • "NEWS.1". cran.r-project.org. Retrieved 8 April 2017.
    • "NEWS.0". cran.r-project.org. Retrieved 8 April 2017.
  54. ^ "Index of /src/base/R-0". cran.r-project.org.
  55. ^ "ANNOUNCE: CRAN". stat.ethz.ch.
  56. ^ https://cran.r-project.org/src/base/NEWS.0
  57. ^ Peter Dalgaard. "R-1.0.0 is released". Retrieved 6 June 2009.
  58. ^ "CHANGES IN R VERSION 2.7.0".
  59. ^ "R FAQ". Retrieved 20 March 2020.
  60. ^ Ottoboni, Kellie; Stark, Philip B. (2018). "Random problems with R". arXiv:1809.06520 [cs.MS].
  61. ^ "Recommendations for Windows text editor for R (StackOverflow)". Retrieved 20 December 2020.
  62. ^ Jump up to: a b "Poll: R GUIs you use frequently (2011)". kdnuggets.com. Retrieved 18 September 2018.
  63. ^ Jump up to: a b "R Programming - The State of Developer Ecosystem in 2020 Infographic". JetBrains: Developer Tools for Professionals and Teams. Retrieved 16 August 2021.
  64. ^ Stephan Wahlbrink. "StatET for R".
  65. ^ "Work with R in Visual Studio". Retrieved 14 December 2020.
  66. ^ "Nvim-R - Plugin to work with R : vim online". www.vim.org. Retrieved 6 March 2019.
  67. ^ "Syntax Highlighting". Kate Development Team. Archived from the original on 7 July 2008. Retrieved 9 July 2008.
  68. ^ Paul E. Johnson & Gregor Gorjanc. "LyX with R through Sweave". Retrieved 4 April 2017.
  69. ^ "NppToR: R in Notepad++". sourceforge.net. 8 May 2013. Retrieved 18 September 2013.
  70. ^ Uwe Ligges. "RWinEdt: R Interface to 'WinEdt'". Retrieved 4 April 2017.
  71. ^ "Tinn-R". Retrieved 5 March 2019.
  72. ^ "Using the R programming language in Jupyter Notebook". Anaconda. Retrieved 14 September 2020.
  73. ^ Gautier, Laurent (21 October 2012). "A simple and efficient access to R from Python". Retrieved 18 September 2013.
  74. ^ Florent Angly. "Statistics::R - Perl interface with the R statistical program - metacpan.org".
  75. ^ alexgutteridge. "GitHub - alexgutteridge/rsruby: Ruby - R bridge". GitHub.
  76. ^ BlueMountain Capital. "F# R Type Provider".
  77. ^ "JuliaInterop/RCall.jl". 2 June 2021 – via GitHub.
  78. ^ "Rserve - Binary R server - RForge.net". www.rforge.net.
  79. ^ "konne/RserveCLI2". 8 March 2021 – via GitHub.
  80. ^ "R.NET".
  81. ^ "r-source: Read only mirror of R source code on GitHub". GitHub. Retrieved 14 September 2019.
  82. ^ Talbot, Justin; DeVito, Zachary; Hanrahan, Pat (1 January 2012). "Riposte: A Trace-driven Compiler and Parallel VM for Vector Code in R". Proceedings of the 21st International Conference on Parallel Architectures and Compilation Techniques. ACM: 43–52. doi:10.1145/2370816.2370825. S2CID 1989369.
  83. ^ Neal, Radford (25 July 2013). "Deferred evaluation in Renjin, Riposte, and pqR". Radford Neal's blog. Retrieved 6 March 2017.
  84. ^ Jackson, Joab (May 16, 2013). TIBCO offers free R to the enterprise. PC World. Retrieved July 20, 2015.
  85. ^ "Microsoft R Open: The Enhanced R Distribution". Retrieved 30 June 2018.
  86. ^ "Local R User Group Directory". Revolutions Blog. Retrieved 12 May 2018.
  87. ^ A list of R conferences and meetings. Jumping Rivers. Retrieved 12 May 2018.
  88. ^ "official website of WhyR? conference". WhyR?. Retrieved 26 June 2019.
  89. ^ "SatRdays listing". SatRdays. Retrieved 26 June 2019.
  90. ^ "R Project for Statistical Computing". Meetup. Retrieved 12 May 2018.
  91. ^ "R Ladies". R Ladies. Retrieved 12 May 2018.
  92. ^ "Forwards". Retrieved 23 March 2020.
  93. ^ Jump up to: a b c "R: Conferences". r-project.org. 1 November 2019. Retrieved 19 November 2019.
  94. ^ "useR! 2004 - The R User Conference". 27 May 2004. Retrieved 9 September 2018.
  95. ^ R Project (9 August 2013). "R-related Conferences". Retrieved 15 August 2019.
  96. ^ "UseR! 2021 - The R User Conference". Retrieved 23 March 2020.
  97. ^ Burns, Patrick (27 February 2007). "Comparison of R to SAS, Stata and SPSS" (PDF). Retrieved 18 September 2013.
  98. ^ R as competition for commercial statistical packages
  99. ^ Muenchen, Robert (19 June 2017). "The Popularity of Data Science Software". Retrieved 21 November 2018.
  100. ^ "R vs. SPSS".
  101. ^ Morgan, Timothy Prickett (2011-02-07). "'Red Hat for stats' goes toe-to-toe with SAS". The Register, 7 February 2011. Retrieved from https://www.theregister.co.uk/2011/02/07/revolution_r_sas_challenge/.
  102. ^ "Analyzing clinical trial data for FDA submissions with R". Revolution Analytics. 14 January 2009. Retrieved 20 September 2018.
  103. ^ Sirosh, Joseph. "Microsoft Closes Acquisition of Revolution Analytics". blogs.technet.com. Microsoft. Retrieved 20 September 2018.
  104. ^ "Introducing R Tools for Visual Studio". Retrieved 20 September 2018.
  105. ^ Oracle Corporation's Big Data Appliance
  106. ^ Chris Kanaracus (2012); Oracle Stakes Claim in R With Advanced Analytics Launch, PC World, February 8, 2012.
  107. ^ Doug Henschen (2012); Oracle Stakes Claim in R With Advanced Analytics Launch, InformationWeek, April 4, 2012.
  108. ^ "What's New in IBM InfoSphere BigInsights v2.1.2". IBM. Archived from the original on 6 September 2014. Retrieved 8 May 2014.
  109. ^ "IBM PureData System for Analytics" (PDF). IBM. Archived from the original (PDF) on 17 May 2014. Retrieved 8 May 2014.
  110. ^ Tibco. "Unleash the agility of R for the Enterprise". Retrieved 15 May 2014.
  111. ^ "ValidR on Mango website". Retrieved 24 September 2018.
  112. ^ Andy Nicholls at Mango Solutions. "ValidR Enterprise: Developing an R Validation Framework" (PDF). Retrieved 24 September 2018.
  113. ^ FDA. "Statistical Software Clarifying Statement" (PDF). Retrieved 24 September 2018.
  114. ^ "An Introduction to R. Notes on R: A Programming Environment for Data Analysis and Graphics" (PDF). Retrieved 3 January 2021.
  115. ^ R Development Core Team. "Assignments with the = Operator". Retrieved 11 September 2018.
  116. ^ most used assignment operator in R is <-
  117. ^ Kabacoff, Robert (2012). "Quick-R: User-Defined Functions". statmethods.net. Retrieved 28 September 2018.

External links[]

Retrieved from ""