forked from GerkeLab/core-r-course
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.Rmd
65 lines (52 loc) · 2.62 KB
/
index.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
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
---
title: "Data processing with R"
---
```{r setup, include=FALSE, warning=FALSE, message=FALSE}
# Global Setup
knitr::opts_chunk$set(
echo = FALSE
)
library(tidyverse)
if (!requireNamespace("zip", quietly = TRUE)) install.packages("zip")
if (!requireNamespace("xaringan", quietly = TRUE)) install.packages("xaringan")
```
```{r}
session_list <- tibble(
Date = seq(lubridate::ymd("2018-07-18"), lubridate::ymd("2018-07-18") + lubridate::weeks(7), by = "7 day"),
Location = c("MKE-1308", rep("MKE-1022", 7)),
`Start Time` = "09:15",
Link = ""
)
session_list[1, "Link"] <- "session_01.html"
```
<!-- Emoji: https://afeld.github.io/emoji-css/ -->
## Announcements
**Travis Gerke**, Thursday, June 28, 2018
> We are pleased to announce the launch of a training series, “Data Processing with R,” for any of you who may be interested. Beginning on July 18, there will be 8 weekly sessions held on Wednesday mornings, 9:15-11:15. Four bi-weekly sessions will follow the initial series. The first session is in MKE-1308, and the remaining sessions are in MKE-1022.
>
> The goal of the training series is to develop core proficiencies in the R programming language for data processing tasks that are common to CDS core staff, honest brokers, and other team members who undertake similar data querying and provisioning activities. No prior experience is necessary! Garrick Aden-Buie, an expert R developer in my group, will be leading the sessions (and I may join as a student when my schedule permits, so that I can learn some new tricks too!).
>
> If you would like to attend, plan to bring a laptop, as the sessions will be interactive. We ask that you install R, Rstudio, and the devtools package prior to the first day ([instructions available here](system-requirements.html)). Garrick can describe/answer any questions about that process in the first session; the reason for completing the task in advance is to ensure that no security permissions on your machine block you from getting up and running.
## Next Session
```{r results='asis'}
next_session <- session_list %>%
filter(Date > Sys.Date()) %>%
arrange(Date) %>%
slice(1) %>%
mutate(
Date = strftime(Date, "%A, %B %d, %Y"),
Link = ifelse(Link != "", glue::glue('<a href="{Link}">Session Page</a>'), "")
)
knitr::kable(next_session, escape = FALSE)
```
## Previous Sessions
```{r results='asis'}
prev_sessions <- session_list %>%
filter(Date <= Sys.Date()) %>%
arrange(desc(Date)) %>%
mutate(
Date = strftime(Date, "%A, %B %d, %Y"),
Link = ifelse(Link != "", glue::glue('<a href="{Link}">Session Page</a>'), "")
)
knitr::kable(prev_sessions, escape = FALSE)
```