-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathprework.Rmd
31 lines (22 loc) · 1.75 KB
/
prework.Rmd
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
---
title: "Prework"
output: html_document
---
Welcome to the [Wrangling Survival Data](https://github.com/bethatkinson/rmed2019_surv) workshop! I look forward to meeting you in person. Before attending the workshop, please complete the following prework:
<br>
1. Sign up for a free RStudio Cloud account at https://rstudio.cloud/ before the workshop. I recommend logging in with an existing Google or GitHub account, if you have one (rather than creating a new account with another password you have to remember).
1. Please bring a laptop that has the following installed:
+ A recent version of R (>=3.6.0), which is available for free at https://cloud.r-project.org/
+ A recent version of RStudio Desktop (>=1.2), available for free ([RStudio Desktop Open Source License](https://www.rstudio.com/products/rstudio/download/#download))
+ The R packages we will use, which you can install by connecting to the internet, opening RStudio, and running at the command line:
```{r pkg-list, eval=FALSE}
install.packages(c("survminer", "tidyverse",
"lubridate", "arsenal", "broom"))
```
+ Note: On RStudio cloud I have installed the latest version of the `survival` package (3.1.1). It has been submitted to CRAN and hopefully will available shortly. In the meantime, you should install the latest version of the survival package from github.
```{r, eval=FALSE}
library(devtools)
install_github("therneau/survival", dependencies=TRUE)
```
1. Don't forget your power cord!
On the day of the workshop, I'll provide you with an RStudio Cloud project that contains all of the course materials. We will use the software listed above only as an important backup should there be problems with the on-site internet connection.