From f36dd205e37b17201d6b8e2e0db304775a9f3b51 Mon Sep 17 00:00:00 2001 From: Sacha DeAngeli Date: Tue, 19 Feb 2019 16:43:47 -0600 Subject: [PATCH] simplified and fixed grammar (#34003) simplified text in several places fixed grammar and typos added a link to the reference section when it's referenced in the article text --- guide/english/r/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/guide/english/r/index.md b/guide/english/r/index.md index 4a0017bf4f..10e94ef7b7 100644 --- a/guide/english/r/index.md +++ b/guide/english/r/index.md @@ -3,14 +3,14 @@ title: R --- ## What is R? -R is an open source programming language and software environment for statistical computing and graphics. It is one of the primary languages used by data scientists and statisticians alike. It is supported by the R Foundation for Statistical Computing and a large community of open source developers. Since R utilized a command line interface, there can be a steep learning curve for some individuals who are used to using GUI focused programs such as SPSS and SAS so extensions to R such as RStudio can be highly beneficial. Since R is an open source program and freely available, there can a large attraction for academics whose access to statistical programs are regulated through their association to various colleges or universities. +R is an open source programming language and software environment for statistical computing and graphics. It is one of the primary languages used by data scientists and statisticians. It is supported by the R Foundation for Statistical Computing and a large community of open source developers. Since R utilizes a command line interface, there can be a steep learning curve for some individuals who are used to using GUI focused programs such as SPSS and SAS so extensions to R such as RStudio can be helpful. Since R is an open source program and available for free, there can a large attraction for academics whose access to statistical programs are regulated through their association to various colleges or universities. R has multiple packages (which are similar to libraries used in languages like python) on repositories like CRAN and bioconductor, which can be utilized for various purposes. ## Installation - The first thing you need to get started with R is to download it from its Official Site according to your operating system. -Now install it on your computer. For help in installation refer to reference section below. +First, download R from its Official Site according to your operating system. +Then install it on your computer. For help in installation refer to the [reference](#reference) section below. ## Popular R Tools & Packages * [RStudio](https://www.rstudio.com/products/rstudio/) is an integrated development environment (IDE) for R. It includes a console, syntax-highlighting editor that supports direct code execution, as well as tools for plotting, history, debugging and workspace management.