How to set up your computer for R
Get R
- Download R 4.0.5.
R is constantly evolving software, with new versions being made available regularly. To make sure all codes are reproducible, we set version 4.0.5. as the version used for this textbook.
To start working in R, please download version 4.0.5 from below. After download, double-click the file and follow the instructions. (If you are using a newer version of R, codes shall all work, but there is no guarantee.)
- For Windows R 4.0.5 for Windows.
- For Mac R 4.0.5 for Mac and R 4.1.0 for M1
- We suggest to use R Studio as editor for R code. (There many other options, too.) You can get R Studio for free.
How to run case studies in R
-
Set the working directory for your project
In case you use
RStudio
create a newRstudio
project for the case studies and load it every time you are working on the project. See the official documentation on how to create and useRstudio
projects. -
Install required packages
We use renv for dependency management. Open the R project you created in Step 1., and install
renv
by running the following command in the R studio consol:install.packages("renv")
then install all the packages and dependencies used in the case studies stored in the
renv.lock
file:renv::restore()
-
Set project path
You will need to set the path to the data repo and save it in the
set-data-directory.R
file. a. Openset-data-directory-example.R
and add your path to the data repo where you have or will download datasets. b. Save asset-data-directory.R
(exactly where you foundset-data-directory-example.R
)