forked from njtierney/qmd4sci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
workflow.qmd
271 lines (175 loc) · 8.56 KB
/
workflow.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
# Workflow
Before we start with rmarkdown, we need to make sure that you understand _file storage hygiene_. This helps you keep your files, paths, and directories clean, which prevents unexpected problems. It will make you more productive in the future because you'll spend less time fighting against file paths. Not sure what a file path is? We explain that as well.
## Overview
* **Teaching** 10 minutes
* **Exercises** 10 minutes
## Questions
* Where should I put all my files?
* What is an RStudio project, anyway?
* What is a file path?
## Objectives
* Understand what a file path is
* Set up an RStudio Project to organise your work
* Put some data in your project to set up the next tasks
## Your Turn {.exercise}
In groups of 2-4 discuss:
1. What your normal "workflow" is for starting a new project
2. Possible challenges that might arise when maintaining your project
## When you start a new project: Open a new RStudio project
This section is heavily influenced by [Jenny Bryan's great blog post on project based workflows.](https://www.tidyverse.org/articles/2017/12/workflow-vs-script/)
Sometimes this is the first line of an R Script or R markdown file.
```r
setwd("c:/really/long/file/path/to/this/directory")
```
#### Question {.question}
What do you think the `setwd` code does?
### So what does this do?
This says, "set my working directory to this specific working directory".
It means that you can read in data and other things like this:
```r
data <- read_csv("data/mydata.csv")
```
Instead of
```r
data <- read_csv("c:/really/long/file/path/to/this/directory/data/mydata.csv")
```
So while this has the effect of **making the file paths work in your file**, it is a problem. It is a problem because, among other things, using `setwd()` like this:
* Has 0% chance of working on someone else's machine (**this could include you in 6 months!**)
* Your file is not self-contained and portable. (Think: _"What if this folder moved to /Downloads, or onto another machine?"_)
So, to get this to work, you need to hand edit the file path to your machine.
This is painful. And when you do this all the time, it gets old, fast.
## What is a file path?
So, this might all be a bit confusing if you don't know what a file path is. A file path is the machine-readable directions to where files on your computer live. So, the file path:
```
/Users/njtierney/Desktop/rmd4sci-materials/demo.R
```
Describes the location of the file "demo.R". This could be visualised as:
```
users
└── njtierney
└── Desktop
└── rmd4sci-materials
└── demo.R << THIS IS THE FILE HERE
└── exercises
└── exploratory-data-analysis
└── eda-document.Rmd
└── eda-script.R
└── data
└── gapminder.csv
```
```{r tree-elbow, eval = FALSE, echo = FALSE}
file_dir <- "Desktop/rmd4sci-materials/demo-gapminder.Rmd"
gsub(pattern = "/",
replacement = "\n└── ",
x = file_dir) %>%
clipr::write_clip()
```
So, if you want to read in the `gapminder.csv` file, you might need to write code like this:
```r
gapminder <- read_csv("/Users/njtierney/Desktop/rmd4sci-materials/data/gapminder.csv")
```
As we now know, this is a problem, because this is not portable code.
If you have an RStudio project file inside the `rmd4sci-materials` folder, you can instead write the following:
```r
gapminder <- read_csv("data/gapminder.csv")
```
## Your Turn {.exercise}
* (1-2 minutes) Imagine you see the following directory path: `"/Users/miles/etc1010/week1/data/health.csv"`
what are the folders above the file, `health.csv`?
* What would be the result of using the following code in `demo-gapminder.Rmd`, and then using the code, and then moving this to another location, say inside your C drive?
```r
setwd("Downloads/etc1010/week1/week1.Rmd)
```
## Is there an answer to the madness?
This file path situation is a real pain. Is there an answer to the madness?
The answer is yes!
I highly recommend when you start on a new idea, new research project, paper. Anything that is new. It should start its life as an **rstudio project**.
An rstudio project helps keep related work together in the same place. Amongst other things, they:
* Keep all your files together
* Set the working directory to the project directory
* Starts a new session of R
* Restore previously edited files into the editor tabs
* Restore other rstudio settings
* Allow for multiple R projects open at the same time.
This helps keep you sane, because:
* Your projects are each independent.
* You can work on different projects at the same time.
* Objects and functions you create and run from project idea won't impact one another.
* You can refer to your data and other projects in a consistent way.
And finally, the big one
**RStudio projects help resolve file path problems**, because they automatically set the working directory to the location of the rstudio project.
Let's open one together.
## Your Turn: Use your own rstudio project {.exercise}
1. In RStudio, and run the following code to start a new rstudio project called "rmd4sci-materials".
```r
usethis::use_course("bit.ly/rmd4sci-materials")
```
2. Follow the prompts to download this to your desktop and then run the rstudio project. (You can move it later if you like!)
3. You are now in an rstudio project!
## Your turn {.exercise}
1. Run the code inside the `demo.R` document
2. Why does the `read_csv` code work?
3. Run the code inside the `exploratory-data-analysis` folder - `eda-script.R`.
4. Does the `read_csv` code work?
5. Run the code inside the `exploratory-data-analysis` folder - `eda-document.Rmd`, by clicking the "knit" button (we'll go into this in more detail soon!)
6. Does it work?
## The "here" package
Although RStudio projects help resolve file path problems, in some cases you might have many folders in your r project. To help navigate them appropriately, you can use the `here` package to provide the full path directory, in a compact way.
```r
here::here("data")
```
returns
```
[1] "/Users/njtierney/Desktop/rmd4sci-materials/data"
```
And
```r
here::here("data", "gapminder.csv")
```
returns
```
[1] "/Users/njtierney/Desktop/rmd4sci-materials/data/gapminder.csv"
```
(Note that these absolute file paths will indeed be different on my computer compared to yours - super neat!)
You can read the above `here` code as:
> In the folder `data`, there is a file called `gapminder.csv`, can you please give me the full path to that file?
This is really handy for a few reasons:
1. It makes things _completely_ portable
1. Rmarkdown documents have a special way of looking for files, this helps eliminate file path pain.
1. If you decide to not use RStudio projects, you have code that will work on _any machine_
## Remember
> If the first line of your R script is
```
setwd("C:\Users\jenny\path\that\only\I\have")
```
> I will come into your office and SET YOUR COMPUTER ON FIRE 🔥.
-- Jenny Bryan
### Aside: Creating an RStudio project {.history}
You can create an rstudio project by going to:
file > new project > new directory > new project > name your project > create project.
You can also click on the create project button in the top left corner
```{r rstudio-create-proj-1, echo = FALSE, fig.align = "center", out.width = "50%"}
knitr::include_graphics(here::here("figs", "rstudio-create-proj-1.png"))
```
Then go to new directory, if it is a new folder - otherwise if you have an existing folder you have - click on existing directory.
```{r rstudio-create-proj-2, echo = FALSE, fig.align = "center", out.width = "50%"}
knitr::include_graphics(here::here("figs", "rstudio-create-proj-2.png"))
```
Then go to new project
```{r rstudio-create-proj-3, echo = FALSE, fig.align = "center", out.width = "50%"}
knitr::include_graphics(here::here("figs", "rstudio-create-proj-3.png"))
```
Then write the name of your project. I think it is usually worthwhile spending a bit of time thinking of a name for your project. Even if it is only a few minutes, it can make a difference. You want to think about:
- keeping it short
- no spaces
- combining words
For example, I have a project looking at bat calls, so I called it `screech`, because bats make a screech-y noise.
And click "create project".
```{r rstudio-create-proj-4, echo = FALSE, fig.align = "center", out.width = "50%"}
knitr::include_graphics(here::here("figs", "rstudio-create-proj-4.png"))
```
D# Summary
In this lesson we've:
* Learnt what file paths are
* How to setup an rstudio project
* How to construct full file paths with the `here` package