Sha256: 87f445fd804c2e56095352b05a327752639ec78c5a0ef74fd95fffb0b6f59edc

Contents?: true

Size: 1.4 KB

Versions: 226

Compression:

Stored size: 1.4 KB

Contents

## Install the R runtime
Visit the [CRAN homepage](https://cran.r-project.org/). There you will find download links for Linux, Mac OSX, and Windows. Download and run the installer for your operating system.

## Install the RStudio IDE
RStudio is a popular cross-platform integrated development environment (IDE) for programming in R (and also supports other languages like Python, JavaScript, and Markdown). Using RStudio will make writing your code solutions and running tests easier.

Download and install the [current stable version of RStudio](https://www.rstudio.com/products/rstudio/download/). Or, alternatively, get the [preview version](https://www.rstudio.com/products/rstudio/download/preview/) of an upcoming release.

## Install the R packages for running tests
The test runner for the specs is the [`testthat`](https://github.com/hadley/testthat) library from Hadley Wickham, which is a popular choice for R package authors.

To install this library, type the following in your RStudio console (or wherever you are using R).

```{R}
install.packages("testthat")
```

While it is unlikely that you will _need_ to install packages to solve the exercism problems, you may want to bring in a general-purpose utility packages like [`magrittr`](https://github.com/smbache/magrittr) that suit your programming style. To install and load a package like `magrittr`:

```{R}
install.packages("magrittr")
library(magrittr)
```

Version data entries

226 entries across 226 versions & 1 rubygems

Version Path
trackler-2.2.1.98 tracks/r/docs/INSTALLATION.md
trackler-2.2.1.97 tracks/r/docs/INSTALLATION.md
trackler-2.2.1.96 tracks/r/docs/INSTALLATION.md
trackler-2.2.1.95 tracks/r/docs/INSTALLATION.md
trackler-2.2.1.94 tracks/r/docs/INSTALLATION.md
trackler-2.2.1.93 tracks/r/docs/INSTALLATION.md
trackler-2.2.1.92 tracks/r/docs/INSTALLATION.md
trackler-2.2.1.91 tracks/r/docs/INSTALLATION.md
trackler-2.2.1.90 tracks/r/docs/INSTALLATION.md
trackler-2.2.1.89 tracks/r/docs/INSTALLATION.md
trackler-2.2.1.88 tracks/r/docs/INSTALLATION.md
trackler-2.2.1.87 tracks/r/docs/INSTALLATION.md
trackler-2.2.1.86 tracks/r/docs/INSTALLATION.md
trackler-2.2.1.85 tracks/r/docs/INSTALLATION.md
trackler-2.2.1.84 tracks/r/docs/INSTALLATION.md
trackler-2.2.1.83 tracks/r/docs/INSTALLATION.md
trackler-2.2.1.82 tracks/r/docs/INSTALLATION.md
trackler-2.2.1.81 tracks/r/docs/INSTALLATION.md
trackler-2.2.1.80 tracks/r/docs/INSTALLATION.md
trackler-2.2.1.79 tracks/r/docs/INSTALLATION.md