-
Notifications
You must be signed in to change notification settings - Fork 0
/
ex_3.qmd
22 lines (14 loc) · 1.07 KB
/
ex_3.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
title: "Explicitly Recording Packages"
---
As with the previous exercise, it is **recommended** that you fork the repository to your GitHub account and clone it to your local machine to follow along with the examples. This will allow the course facilitators to see your work, provide feedback, and troubleshoot with you as needed.
If you're not familiar with using git and GitHub, you can skip the forking and cloning steps and instead download a zip file of the repository.
# Adding Packages to the`renv.lock` File
The exercises for initiating and snapshotting a project can be found in the `explicit-record-exercises` folder of the [intro-to-renv-exercises](https://github.com/lmu-osc/introduction-to-renv-exercises/tree/main) repo.
```{r, results='asis', echo=FALSE}
# To make changes to the instructions, go to the init-snapshot-exercises-instructions.md file in the intro-to-renv-exercises repository!
library(httr)
url="https://raw.githubusercontent.com/lmu-osc/introduction-to-renv-exercises/main/explicit-record-exercises/README.md"
response=GET(url)
cat(content(response))
```