-
Notifications
You must be signed in to change notification settings - Fork 6
/
materials_schedule.Rmd
40 lines (31 loc) · 1.22 KB
/
materials_schedule.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
---
title: "Materials + Schedule"
output:
html_document
---
`r config::get("holiday")` There is an assignment due before class to [install software](modules/Setup/Setup.html) and we recommend completing HW 1 (uploading a screenshot showing that you finished the Swirl module indicated below) before class, but all other assignments will be due `r config::get("final_due_date")`. You are welcome to turn assignments in earlier if you wish.
<br>
## Day Overview
| Time (ET) | Content |
|-------------------|-----------|
| 1:30pm - 2:30pm | Session 1 |
| 2:30pm - 2:40pm | Break |
| 2:40pm - 3:40pm | Session 2 |
| 3:40pm - 3:50pm | Break |
| 3:50pm - 5:00pm | Session 3 |
*Note: Timing is approximate*
<br>
## Detailed Schedule + Materials
```{r, results='asis', echo = FALSE, message=FALSE, warning = FALSE}
# The str_replace_all creates an absolute url to linked documents since there are word and pdf rendered versions of the syllabus
source("scripts/utils.R")
pander::pandoc.table(
read_markdown("docs/_schedule_table.Rmd") %>%
mutate(across(
.fns = ~ str_replace_all(., "\\./", "https://jhudatascience.org/intro_to_r/")
)),
missing = "",
split.tables = Inf,
style = "rmarkdown"
)
```