-
Notifications
You must be signed in to change notification settings - Fork 3
/
1-4_Working_with_R_answers.qmd
229 lines (146 loc) · 4.32 KB
/
1-4_Working_with_R_answers.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
# Working with R - Answers {.unnumbered}
```{r setup, include=FALSE}
htmltools::tagList(rmarkdown::html_dependency_font_awesome())
```
```{r, echo = FALSE, purl = FALSE}
knitr::knit_hooks$set(purl = knitr::hook_purl)
options(purl = FALSE)
knitr::opts_chunk$set(purl = FALSE)
```
```{r, include = FALSE}
knitr::opts_hooks$set(eval = function(opt) {
if (any(opt$exercise))
opt$eval <- opt$include <- FALSE
opt
})
static <- TRUE
options(width = 100)
```
```{r packages, include = FALSE}
library(kableExtra)
library(knitr)
```
```{r load_data, context="data", include=FALSE}
library(survival)
```
## Preface {data-progressive="FALSE"}
Open Rstudio to do the practicals. Note that tasks with \* are optional.
### R packages
In this practical, a number of R packages are used. The packages used (with versions that were used to generate the solutions) are:
- `survival` (version: `r packageVersion("survival")`)
*`r R.version.string`*
### Dataset
For this practical, we will use the **heart** and **retinopathy** data sets from the `survival` package. More details about the data sets can be found in:
https://stat.ethz.ch/R-manual/R-devel/library/survival/html/heart.html
https://stat.ethz.ch/R-manual/R-devel/library/survival/html/retinopathy.html
## Basic calculations
### Expressions {.tabset .tabset-fade .tabset-pills}
::: {.panel-tabset .nav-pills}
#### Task 1
Use R as a calculator to calculate the following values:
- $17 ^4$,
- $45 - 2 \times 3$
- $(45 - 2) \times 3$
#### *Hint 1*
Enter the calculations in an R-script and then run the lines using {{< kbd Ctrl-Enter >}}.
```{r eval=FALSE, include=TRUE}
17^4
2^(1/3)
```
etc
#### Solution 1
```{r save-expres, solution = TRUE, eval=F, include=TRUE}
17^4
2^(1/3)
45-2 * 3
(45-2) * 3
```
:::
### Assignment {.tabset .tabset-fade .tabset-pills}
::: panel-tabset
#### Task 2
Now use assignment to do the same calculation. Assign names `a`, `b` and `c` to each of the three values involved, then do the calculation while assigning the name `d` to the result.
#### Hint 2
Execute the following code.
```{r}
a <- 45
b <- 2
c <- 3
d <- (a - b) * c
```
`a`, `b`, `c`, and `d` are variables. To see their values, you can just type the variable name (e.g. `a`) and hit {{< kbd Ctrl-Enter >}} or use the command `print(a)`.
#### Solution 2 {.unnumbered}
```{r}
a <- 45
b <- 2
c <- 3
d <- (a - b) * c
print(a)
print(b)
print(c)
print(d)
d
```
:::
## Importing and Saving Data
### Save your work {.tabset .tabset-fade .tabset-pills}
It is important to save your work.
::: {.panel-tabset .nav-pills}
#### Task 1
Save the vectors `numbers <- c(34, 24, 19, 23, 16)`, `numbers_2 <- c(1:200)` and `treatment <- c("yes", "yes", "no", "no", "no", "yes")`. Use the name `new_vectors`.
#### *Hint 1*
Use the function `save(...)`. Note that you need to set the working directory.
#### Solution 1
```{r save-solution, solution = TRUE, eval=F}
numbers <- c(34, 24, 19, 23, 16)
numbers_2 <- c(1:200)
treatment <- c("yes", "yes", "no", "no", "no", "yes")
save(numbers, numbers_2, treatment, file = "new_vectors.RData")
```
:::
::: {.panel-tabset .nav-pills}
#### Task 2 \*
Save the vectors `events <- heart$event` and `eyes <- retinopathy$eye`. Use the name `vectors_survival`.
#### *Hint 2* \*
Use the function `save(...)`. Note that you need to set the working directory.
#### Solution 2 \*
```{r save2-solution, solution = TRUE, eval=F}
events <- heart$event
eyes <- retinopathy$eye
save(events, eyes, file = "vectors_survival.RData")
```
:::
### Load your work {.tabset .tabset-fade .tabset-pills}
Let's continue working on the data sets by loading our results.
::: {.panel-tabset .nav-pills}
#### Task
Load the file `new_vectors`.
#### *Hint*
Use the function `load(...)`.
#### Solution
```{r load-solution, solution = TRUE, eval=F}
load("new_vectors.RData")
```
:::
### Remove your work {.tabset .tabset-fade .tabset-pills}
Remove unnecessary objects.
::: {.panel-tabset .nav-pills}
#### Task 1
Remove the vectors `numbers`, `numbers_2` and `treatment`.
#### *Hint 1*
Use the function `rm(...)`.
#### Solution 1
```{r rm-solution, solution = TRUE, eval=F}
rm(numbers, numbers_2, treatment)
```
:::
::: {.panel-tabset .nav-pills}
#### Task 2 \*
Remove the vectors `events` and `eyes`.
#### *Hint 2* \*
Use the function `rm(...)`.
#### Solution 2 \*
```{r, eval=F}
rm(events, eyes)
```
:::