R&d manager là gì

Subtitles: Arabic, French, Portuguese (European), Chinese (Simplified), Italian, Portuguese (Brazilian), Vietnamese, Korean, German, Russian, English, Spanish, Japanese

R&d manager là gì

Take control of your R and Python code

An integrated development environment for R and Python, with a console, syntax-highlighting editor that supports direct code execution, and tools for plotting, history, debugging and workspace management.

R&d manager là gì

Easily share your insights

Share data products across your organization. One button deployment of Shiny applications, R Markdown reports, Jupyter Notebooks, and more.

R&d manager là gì

Control and distribute packages

Control, organize, and govern your use of R packages to increase reproducibility and decrease the time you spend installing and troubleshooting.

R is a programming language for statistical computing and graphics supported by the R Core Team and the R Foundation for Statistical Computing. Created by statisticians Ross Ihaka and Robert Gentleman, R is used among data miners and statisticians for data analysis and developing statistical software. Users have created packages to augment the functions of the R language.

R&d manager là gì
R
R&d manager là gì

R terminal

ParadigmsMulti-paradigm: procedural, object-oriented, functional, reflective, imperative, array[1]Designed byRoss Ihaka and Robert GentlemanDeveloperR Core TeamFirst appearedAugust 1993; 28 years ago (1993-08)Stable release

4.1.3[2] / 10 March 2022; 32 days ago (10 March 2022)

Typing disciplineDynamicLicenseGNU GPL v2Filename extensions

  • .r[3]
  • .rdata
  • .rds
  • .rda[4]

Websitewww.r-project.org
R&d manager là gì
Influenced by

  • Lisp
  • S
  • Scheme

InfluencedJulia[5]
  • R&d manager là gì
    R Programming at Wikibooks

According to user surveys and studies of scholarly literature databases, R is one of the most commonly used programming language used in data mining.[6] As of March 2022,[update] R ranks 11th in the TIOBE index, a measure of programming language popularity.[7]

The official R software environment is an open-source free software environment within the GNU package, available under the GNU General Public License. It is written primarily in C, Fortran, and R itself (partially self-hosting). Precompiled executables are provided for various operating systems. R has a command line interface.[8] Multiple third-party graphical user interfaces are also available, such as RStudio, an integrated development environment, and Jupyter, a notebook interface.

R is an open-source implementation of the S programming language combined with lexical scoping semantics from Scheme, which allow objects to be defined in predetermined blocks rather than the entirety of the code.[1] S was created by Rick Becker, John Chambers, Doug Dunn, Jean McRae, and Judy Schilling at Bell Labs around 1976. Designed for statistical analysis, the language is an interpreted language whose code could be directly run without a compiler.[9] Many programs written for S run unaltered in R.[8] As a dialect of the Lisp language, Scheme was created by Gerald J. Sussman and Guy L. Steele Jr. at MIT around 1975.[10]

In 1991, statisticians Ross Ihaka and Robert Gentleman at the University of Auckland, New Zealand, embarked on an S implementation.[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.[8] They began publicizing it on the data archive StatLib and the s-news mailing list in August 1993.[12] In 1995, statistician Martin Mächler convinced Ihaka and Gentleman to make R a free and open-source software under the GNU General Public License.[12][13][14] The first official release came in June 1995.[12] The first official "stable beta" version (v1.0) was released on 29 February 2000.[15][16]

The Comprehensive R Archive Network (CRAN) was officially announced on 23 April 1997. CRAN stores R's executable files, source code, documentations, as well as packages contributed by users. CRAN originally had 3 mirrors and 12 contributed packages.[17] As of January 2022, it has 101 mirrors[18] and 18,728 contributed packages.[19]

The R Core Team was formed in 1997 to further develop the language.[8] As of January 2022[update], it consists of Chambers, Gentleman, Ihaka, and Mächler, plus statisticians Douglas Bates, Peter Dalgaard, Kurt Hornik, Michael Lawrence, Friedrich Leisch, Uwe Ligges, Thomas Lumley, Sebastian Meyer, Paul Murrell, Martyn Plummer, Brian Ripley, Deepayan Sarkar, Duncan Temple Lang, Luke Tierney, and Simon Urbanek, as well as computer scientist Tomas Kalibera. Stefano Iacus, Guido Masarotto, Heiner Schwarte, Seth Falcon, Martin Morgan, and Duncan Murdoch were members.[20] In April 2003,[21] the R Foundation was founded as a non-profit organization to provide further support for the R project.[8]

R's data structures include vectors, arrays, lists, and data frames.[22] Vectors are ordered collections of values and can be mapped to arrays of one or more dimensions in a column major order. That is, given an ordered collection of dimensions, one fills in values along the first dimension first, then fill in one-dimensional arrays across the second dimension, and so on.[23] R supports array arithmetics and in this regard is like languages such as APL and MATLAB.[22][24] The special case of an array with two dimensions is called a matrix. Lists serve as collections of objects that do not necessarily have the same data type. Data frames contain a list of vectors of the same length, plus a unique set of row names.[22] R has no scalar data type.[25] Instead, a scalar is represented as a length-one vector.[26]

R and its libraries implement various statistical techniques, including linear and nonlinear modeling, classical statistical tests, spatial and time-series analysis, classification, clustering, and others. For computationally intensive tasks, C, C++, and Fortran code can be linked and called at run time. Another of R's strengths is static graphics; it can produce publication-quality graphs that include mathematical symbols.[27]

Programming

R is an interpreted language; users can 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.

R supports procedural programming with functions and, for some functions, object-oriented programming with generic functions.[28] Due to its S heritage, R has stronger object-oriented programming facilities than most statistical computing languages.[citation needed] Extending it is facilitated by its lexical scoping rules, which are derived from Scheme.[29] R uses S-expressions to represent both data and code.[citation needed] R's extensible object system includes objects for (among others): regression models, time-series and geo-spatial coordinates. Advanced users can write C, C++,[30] Java,[31] .NET[32] or Python code to manipulate R objects directly.[33]

Functions are first-class objects and can be manipulated in the same way as data objects, facilitating meta-programming that allows multiple dispatch. 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.[34] A generic function acts differently depending on the classes of the arguments passed to it. In other words, the generic function dispatches the method implementation specific to that object's class. For example, R has a generic print function that can print almost every class of object in R with print(objectname).[35] Many of R's standard functions are written in R,[citation needed] which makes it easy for users to follow the algorithmic choices made. R is highly extensible through the use of packages for specific functions and specific applications.

R's capabilities are extended through user-created[36] packages, which offer statistical techniques, graphical devices, import/export, reporting (RMarkdown, knitr, Sweave), etc. R's packages and the ease of installing and using them, has been cited as driving the language's widespread adoption in data science.[37][38][39][40][41] The 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 archiving.[42]

Multiple packages are included with the basic installation. Additional packages are available on CRAN,[18] Bioconductor, Omegahat,[43] GitHub, and other repositories.[44][45][46]

The "Task Views" on the CRAN website[47] lists packages in fields including Finance, Genetics, High Performance Computing, Machine Learning, Medical Imaging, Social Sciences and Spatial Statistics. R has been identified by the FDA as suitable for interpreting data from clinical research.[48] Microsoft maintains a daily snapshot of CRAN that dates back to Sept. 17, 2014.[49]

Other R package resources include R-Forge,[50] a platform for the collaborative development of R packages. The Bioconductor project provides packages for genomic data analysis, including object-oriented data-handling and analysis tools for data from Affymetrix, cDNA microarray, and next-generation high-throughput sequencing methods.[51]

A group of packages called the Tidyverse, which can be considered a "dialect" of the R language, is increasingly popular among developers.[note 1] It 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). Dynamic and interactive graphics are available through additional packages.[52]

R is one of 5 languages with an Apache Spark API, along with Scala, Java, Python, and SQL.[53][54]

A list of changes in R releases is maintained in various "news" files at CRAN.[55] 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 1 April 1997.
0.49 1997-04-23 This is the oldest source release which is currently available on CRAN.[56] CRAN is started on this date, with 3 mirrors that initially hosted 12 packages.[57] 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.[58]
1.0 2000-02-29 Considered by its developers stable enough for production use.[59]
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[60]
2.11 2010-04-22 Support for Windows 64-bit systems.
2.12.2 2011-02-25 Last version to support Windows 2000[61]
2.13 2011-04-14 Adding a new compiler function that allows speeding up functions by converting them to bytecode.
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.[62] 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

Various applications can be used to edit or run R code.[63]

Early developers preferred to run R via the command line console,[64] succeeded by those who prefer an IDE.[65] IDEs for R include (in alphabetical order) Rattle GUI, R Commander, RKWard, RStudio, and Tinn-R.[64] R is also supported in multi-purpose IDEs such as Eclipse via the StatET plugin,[66] and Visual Studio via the R Tools for Visual Studio.[67] Of these, RStudio is the most commonly used.[65]

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

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

The main R implementation is written in R, C, and Fortran.[83] 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[84] are implementations of R in C++. Renjin, Riposte, and pqR attempt to improve performance by using multiple cores and deferred evaluation.[85] 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, who previous sold the commercial implementation S-PLUS, built a runtime engine called TERR, which is part of Spotfire.[86]

Microsoft R Open (MRO) is a fully compatible R distribution with modifications for multi-threaded computations.[87][88] As of 30 June 2021, Microsoft started to phase out MRO in favor of the CRAN distribution. [89]

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

A growing number of R events bring users together, such as conferences (e.g. useR!, WhyR?, conectaR, SatRdays),[92][93] meetups,[94] as well as R-Ladies groups[95] that promote gender diversity. The R Foundation taskforce focuses on women and other under-represented groups.[96]

The official annual gathering of R users is called "useR!".[97] The first such event was useR! 2004 in May 2004, Vienna, Austria.[98] After skipping 2005, the useR! conference has been held annually, usually alternating between locations in Europe and North America.[99] History:[97]

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

The next useR! event is set to take place online in late June, 2022.[100]

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

R is comparable to popular commercial statistical packages such as SAS, SPSS, and Stata. One difference is that R is available at no charge under a free software license.[101]

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.[102] 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".[103]

R is more procedural 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 larger files.[104]

Although R is an open-source project, some companies provide commercial support and extensions.

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 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.[105] Revolution Analytics offers an R distribution designed to comply with established IQ/OQ/PQ criteria that enables clients in the pharmaceutical sector to validate their installation of REvolution R.[106] In 2015, Microsoft Corporation acquired Revolution Analytics[107] and integrated the R programming language into SQL Server, Power BI, Azure SQL Managed Instance, Azure Cortana Intelligence, Microsoft ML Server and Visual Studio 2017.[108]

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

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

TIBCO offers a runtime-version R as a part of Spotfire.[114]

Mango Solutions offers a validation package for R, ValidR,[115][116] to comply with drug approval agencies, such as the FDA. These agencies required the use of validated software, as attested by the vendor or sponsor.[117]

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".[118])

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

> 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.[121] Example:

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

 

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

> 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 7 8 9 10 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.

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:

 

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

  • 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("green", "pink", "#007FFF", "cyan", "#7FFF7F", "white", "#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)

  • R package
  • Comparison of numerical-analysis software
  • Comparison of statistical packages
  • List of numerical-analysis software
  • List of statistical software
  • Rmetrics

  1. ^ As of 13 June 2020,[update] Metacran listed 7 of the 8 core packages of the Tidyverse in the list of most download R packages.

  1. ^ 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. ^ Peter Dalgaard (10 March 2022). "R 4.1.3 is released". Retrieved 10 March 2022.
  3. ^ "R scripts". mercury.webster.edu. Retrieved 17 July 2021.
  4. ^ "R Data Format Family (.rdata, .rda)". Loc.gov. 9 June 2017. Retrieved 17 July 2021.
  5. ^ "Introduction". The Julia Manual. Archived from the original on 20 June 2018. Retrieved 5 August 2018.
  6. ^ R's popularity
    • David Smith (2012); R Tops Data Mining Software Poll, R-bloggers, 31 May 2012.
    • Karl Rexer, Heather Allen, & Paul Gearan (2011); 2011 Data Miner Survey Summary, presented at Predictive Analytics World, Oct. 2011.
    • Robert A. Muenchen (2012). "The Popularity of Data Analysis Software".
    • Tippmann, Sylvia (29 December 2014). "Programming tools: Adventures with R". Nature. 517 (7532): 109–110. doi:10.1038/517109a. PMID 25557714.
  7. ^ "TIOBE Index - The Software Quality Company". TIOBE. Retrieved 12 March 2022.{{cite web}}: CS1 maint: url-status (link)
  8. ^ a b c d e Kurt Hornik. The R FAQ: Why R?. ISBN 3-900051-08-9. Retrieved 29 January 2008.
  9. ^ Becker, Richard A., A Brief History of S, CiteSeerX 10.1.1.131.1428, retrieved 12 January 2022
  10. ^ Sussman, Gerald Jay; Steele, Guy L. (1 December 1998). "The First Report on Scheme Revisited". Higher-Order and Symbolic Computation. 11 (4): 399–404. doi:10.1023/A:1010079421970. ISSN 1573-0557. S2CID 7704398.
  11. ^ "Academic unfazed by rock star status". NZ Herald. Retrieved 30 December 2021.
  12. ^ a b c Ihaka, Ross (1998). R : Past and Future History (PDF) (Technical report). Interface '98: Statistics Department, The University of Auckland, Auckland, New Zealand.{{cite techreport}}: CS1 maint: location (link)
  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. ^ "Over 16 years of R Project history". Revolutions. Retrieved 30 May 2016.
  16. ^ Ihaka, Ross. "The R Project: A Brief History and Thoughts About the Future" (PDF). stat.auckland.ac.nz.
  17. ^ Kurt Hornik (23 April 1997). "Announce: CRAN". r-help. Wikidata Q101068595..
  18. ^ a b "CRAN - Mirrors". cran.r-project.org. Retrieved 15 January 2022.
  19. ^ "CRAN - Contributed Packages". cran.r-project.org. Retrieved 3 January 2022.
  20. ^ "R: Contributors". R Project. Retrieved 14 July 2021.
  21. ^ Mächler, Martin; Hornik, Kurt (December 2014). "R Foundation News" (PDF). The R Journal. Retrieved 30 December 2021.{{cite web}}: CS1 maint: url-status (link)
  22. ^ a b c Dalgaard, Peter (2002). Introductory Statistics with R. New York, Berlin, Heidelberg: Springer-Verlag. pp. 10–18, 34. ISBN 0387954759.
  23. ^ An Introduction to R, Section 5.1: Arrays. Retrieved in 2010-03 from https://cran.r-project.org/doc/manuals/R-intro.html#Arrays.
  24. ^ Chen, Han-feng; Wai-mee, Ching; Da, Zheng. "A Comparison Study on Execution Performance of MATLAB and APL" (PDF). McGill University. Retrieved 16 February 2022.
  25. ^ 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.
  26. ^ "Data structures · Advanced R." adv-r.had.co.nz. Retrieved 26 September 2016.
  27. ^ "R: What is R?". R-project.org. Retrieved 17 February 2022.
  28. ^ White, Homer. 14.1 Programming Paradigms | Beginning Computer Science with R.
  29. ^ 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.
  30. ^ Eddelbuettel, Dirk; Francois, Romain (2011). "Rcpp: Seamless R and C++ Integration". Journal of Statistical Software. 40 (8). doi:10.18637/jss.v040.i08.
  31. ^ "nution-j2r: Java library to invoke R native functions". Retrieved 13 September 2018.
  32. ^ .NET Framework
    • "Making GUIs using C# and R with the help of R.NET". 19 June 2011. Retrieved 13 September 2018.
    • "R.NET homepage". Archived from the original on 13 October 2015. Retrieved 13 September 2018.
    • Haynold, Oliver M. (April 2011). An Rserve Client Implementation for CLI/.NET (PDF). R/Finance 2011. Chicago, IL, USA. Archived from the original (PDF) on 29 November 2015. Retrieved 13 September 2018.
  33. ^ R manuals. "Writing R Extensions". r-project.org. Retrieved 13 September 2018.
  34. ^ "Functions · Advanced R." adv-r.had.co.nz.
  35. ^ R Core Team. "Print Values". R Documentation. R Foundation for Statistical Computing. Retrieved 30 May 2016.
  36. ^ Hadley, Wickham; Bryan, Jenny. "R packages: Organize, Test, Document, and Share Your Code". {{cite journal}}: Cite journal requires |journal= (help)
  37. ^ 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.
  38. ^ Vance, Ashlee (6 January 2009). "Data Analysts Captivated by R's Power". New York Times.
  39. ^ Tippmann, Sylvia (29 December 2014). "Programming tools: Adventures with R". Nature News. 517 (7532): 109–110. doi:10.1038/517109a. PMID 25557714.
  40. ^ Thieme, Nick (2018). "R generation". Significance. 15 (4): 14–19. doi:10.1111/j.1740-9713.2018.01169.x. ISSN 1740-9713.
  41. ^ widely used
    • Fox, John & Andersen, Robert (January 2005). "Using the R Statistical Computing Environment to Teach Social Statistics Courses" (PDF). Department of Sociology, McMaster University. Retrieved 6 August 2018. {{cite journal}}: Cite journal requires |journal= (help)
    • Vance, Ashlee (6 January 2009). "Data Analysts Captivated by R's Power". New York Times. Retrieved 6 August 2018. 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...
  42. ^ 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.
  43. ^ "Omegahat.net". Omegahat.net. Retrieved 16 September 2018.
  44. ^ packages available from repositories
    • Robert A. Muenchen (2012). "The Popularity of Data Analysis Software".
    • Tippmann, Sylvia (29 December 2014). "Programming tools: Adventures with R". Nature. 517 (7532): 109–110. doi:10.1038/517109a. PMID 25557714.
    • "Search all R packages and function manuals | Rdocumentation". Rdocumentation. 16 June 2014. Retrieved 16 September 2018.
  45. ^ Wickham, Hadley; Bryan, Jennifer. Chapter 10 Object documentation | R Packages.
  46. ^ "Rd formatting". cran.r-project.org. Retrieved 16 August 2021.
  47. ^ "CRAN Task Views". cran.r-project.org. Retrieved 16 September 2018.
  48. ^ "FDA: R OK for drug trials". Retrieved 16 September 2018.
  49. ^ "CRAN Time Machine. MRAN". Retrieved 26 December 2019.
  50. ^ "R-Forge: Welcome". Retrieved 16 September 2018.
  51. ^ 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.
  52. ^ Lewin-Koh, Nicholas (7 January 2015). "CRAN Task View: Graphic Displays & Dynamic Graphics & Graphic Devices & Visualization". The Comprehensive R Archive Network. Archived from the original on 26 September 2016. Retrieved 13 September 2018. {{cite journal}}: Cite journal requires |journal= (help)
  53. ^ "Spark API Documentation". Spark.
  54. ^ "SparkR (R on Spark)". Spark.
  55. ^ 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.
  56. ^ "Index of /src/base/R-0". cran.r-project.org.
  57. ^ "ANNOUNCE: CRAN". stat.ethz.ch.
  58. ^ "0.99 SERIES NEWS : CHANGES IN R VERSION 0.99.0". Cran.r-project.org. Retrieved 18 February 2022.
  59. ^ Peter Dalgaard. "R-1.0.0 is released". Stat.ethz.ch. Retrieved 6 June 2009.
  60. ^ "CHANGES IN R VERSION 2.7.0". Cran-archive.r-project.org. Retrieved 18 February 2022.
  61. ^ "R FAQ". Cran.r-project.org. Retrieved 20 March 2020.
  62. ^ Ottoboni, Kellie; Stark, Philip B. (2018). "Random problems with R". arXiv:1809.06520 [cs.MS].
  63. ^ "Recommendations for Windows text editor for R (StackOverflow)". Stackoverflow.com. Retrieved 20 December 2020.
  64. ^ a b "Poll: R GUIs you use frequently (2011)". kdnuggets.com. Retrieved 18 September 2018.
  65. ^ a b "R Programming - The State of Developer Ecosystem in 2020 Infographic". JetBrains: Developer Tools for Professionals and Teams. Retrieved 16 August 2021.
  66. ^ Stephan Wahlbrink. "StatET for R".
  67. ^ "Work with R in Visual Studio". Retrieved 14 December 2020.
  68. ^ "Nvim-R - Plugin to work with R : vim online". Vim.org. Retrieved 6 March 2019.
  69. ^ "Syntax Highlighting". Kate Development Team. Archived from the original on 7 July 2008. Retrieved 9 July 2008.
  70. ^ Paul E. Johnson & Gregor Gorjanc. "LyX with R through Sweave". Retrieved 4 April 2017.
  71. ^ "NppToR: R in Notepad++". sourceforge.net. 8 May 2013. Retrieved 18 September 2013.
  72. ^ Uwe Ligges (5 January 2017). "RWinEdt: R Interface to 'WinEdt'". Retrieved 4 April 2017.
  73. ^ "Tinn-R". Retrieved 5 March 2019.
  74. ^ "Using the R programming language in Jupyter Notebook". Anaconda. Retrieved 14 September 2020.
  75. ^ Gautier, Laurent. "rpy2 - R in Python". Retrieved 30 November 2021.{{cite web}}: CS1 maint: url-status (link)
  76. ^ Florent Angly. "Statistics::R - Perl interface with the R statistical program". Metacpan.org.
  77. ^ Alex Gutteridge (15 July 2021). "GitHub - alexgutteridge/rsruby: Ruby - R bridge". Github.com.
  78. ^ BlueMountain Capital. "F# R Type Provider".
  79. ^ "JuliaInterop/RCall.jl". Github.com. 2 June 2021.
  80. ^ "Rserve - Binary R server - RForge.net". Rforge.net.
  81. ^ "konne/RserveCLI2". Github.com. 8 March 2021.
  82. ^ "R.NET". Jmp75.github.io. Retrieved 18 February 2022.
  83. ^ "r-source: Read only mirror of R source code on GitHub". GitHub. Retrieved 14 September 2019.
  84. ^ 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.
  85. ^ Neal, Radford (25 July 2013). "Deferred evaluation in Renjin, Riposte, and pqR". Radford Neal's blog. Retrieved 6 March 2017.
  86. ^ Jackson, Joab (16 May 2013). TIBCO offers free R to the enterprise. PC World. Retrieved 20 July 2015.
  87. ^ "Home". mran.microsoft.com. Retrieved 22 November 2021.
  88. ^ "Microsoft R Open: The Enhanced R Distribution". Retrieved 30 June 2018.
  89. ^ "Looking to the future for R in Azure SQL and SQL Server". 30 June 2021. Retrieved 7 November 2021.
  90. ^ "Local R User Group Directory". Revolutions Blog. Retrieved 12 May 2018.
  91. ^ A list of R conferences and meetings. Jumping Rivers. Retrieved 12 May 2018.
  92. ^ "official website of WhyR? conference". WhyR?. Retrieved 26 June 2019.
  93. ^ "SatRdays listing". SatRdays. Retrieved 26 June 2019.
  94. ^ "R Project for Statistical Computing". Meetup. Retrieved 12 May 2018.
  95. ^ "R Ladies". R Ladies. Retrieved 12 May 2018.
  96. ^ "Forwards". Retrieved 23 March 2020.
  97. ^ a b "R: Conferences". r-project.org. 1 November 2019. Retrieved 19 November 2019.
  98. ^ "useR! 2004 - The R User Conference". 27 May 2004. Retrieved 9 September 2018.
  99. ^ R Project (9 August 2013). "R-related Conferences". Retrieved 15 August 2019.
  100. ^ "useR! 2022". user2022.r-project.org. Retrieved 11 March 2022.
  101. ^ Burns, Patrick (27 February 2007). "Comparison of R to SAS, Stata and SPSS" (PDF). Retrieved 18 September 2013.
  102. ^ R as competition for commercial statistical packages
    • Vance, Ashlee (7 January 2009). "Data Analysts Are Mesmerized by the Power of Program R: [Business/Financial Desk]". The New York Times.
    • Vance, Ashlee (8 January 2009). "R You Ready for R?". The New York Times.
  103. ^ Muenchen, Robert (19 June 2017). "The Popularity of Data Science Software". Retrieved 21 November 2018.
  104. ^ "R vs. SPSS".
  105. ^ 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/.
  106. ^ "Analyzing clinical trial data for FDA submissions with R". Revolution Analytics. 14 January 2009. Retrieved 20 September 2018.
  107. ^ Sirosh, Joseph. "Microsoft Closes Acquisition of Revolution Analytics". blogs.technet.com. Microsoft. Retrieved 20 September 2018.
  108. ^ "Introducing R Tools for Visual Studio". Retrieved 20 September 2018.
  109. ^ Oracle Corporation's Big Data Appliance
    • Doug Henschen (2012); Oracle Makes Big Data Appliance Move With Cloudera, InformationWeek, 10 January 2012.
    • Jaikumar Vijayan (2012); Oracle's Big Data Appliance brings focus to bundled approach, ComputerWorld, 11 January 2012.
    • Timothy Prickett Morgan (2011); Oracle rolls its own NoSQL and Hadoop Oracle rolls its own NoSQL and Hadoop, The Register, 3 October 2011.
  110. ^ Chris Kanaracus (2012); Oracle Stakes Claim in R With Advanced Analytics Launch, PC World, February 8, 2012.
  111. ^ Doug Henschen (2012); Oracle Stakes Claim in R With Advanced Analytics Launch, InformationWeek, April 4, 2012.
  112. ^ "What's New in IBM InfoSphere BigInsights v2.1.2". IBM. Archived from the original on 6 September 2014. Retrieved 8 May 2014.
  113. ^ "IBM PureData System for Analytics" (PDF). IBM. Archived from the original (PDF) on 17 May 2014. Retrieved 8 May 2014.
  114. ^ Tibco. "Unleash the agility of R for the Enterprise". Retrieved 15 May 2014.
  115. ^ "ValidR on Mango website". Retrieved 24 September 2018.
  116. ^ Andy Nicholls at Mango Solutions. "ValidR Enterprise: Developing an R Validation Framework" (PDF). Retrieved 24 September 2018.
  117. ^ FDA. "Statistical Software Clarifying Statement" (PDF). Food and Drug Administration. Retrieved 24 September 2018.
  118. ^ "An Introduction to R. Notes on R: A Programming Environment for Data Analysis and Graphics" (PDF). Retrieved 3 January 2021.
  119. ^ R Development Core Team. "Assignments with the = Operator". Retrieved 11 September 2018.
  120. ^ most used assignment operator in R is <-
    • R Development Core Team. "Writing R Extensions". Retrieved 11 September 2018. [...] we recommend the consistent use of the preferred assignment operator ‘<-’ (rather than ‘=’) for assignment.
    • "Google's R Style Guide". Retrieved 11 September 2018.
    • Wickham, Hadley. "Style Guide". Retrieved 11 September 2018.
    • Bengtsson, Henrik (January 2009). "R Coding Conventions (RCC) – a draft". Retrieved 11 September 2018.
  121. ^ Kabacoff, Robert (2012). "Quick-R: User-Defined Functions". statmethods.net. Retrieved 28 September 2018.

R (programming language)at Wikipedia's sister projects

  • Media from Commons
  • Textbooks from Wikibooks
  • Resources from Wikiversity

  • Official website   of the R project
  • R Technical Papers

Computer programming

Retrieved from "https://en.wikipedia.org/w/index.php?title=R_(programming_language)&oldid=1081908336"