-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.qmd
67 lines (49 loc) · 1.51 KB
/
index.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
---
title: "Systems Immunology Bootcamp"
sidebar: false
format-links: false
page-layout: full
toc: false
footnotes-hover: true
---
Instructor learning materials for data analysis module of Research Design and Analysis, 2023/2024.
This material is prepared through collaboration between Chris Magnano, PhD (Core for Computational Biomedicine at HMS) and Eren Ada, PhD (Department of Immunology, HMS).
### Details {.unnumbered}
{{< fa calendar >}} Sep 5 - Sep 15
{{< fa map-marker >}} TMEC 443[^1]
[^1]: Sessions will be in-person only.
### Instructors {.unnumbered}
:::: {.columns}
::: {.column width="50%"}
##### {{< fa user >}} Eren Ada, PhD
>
>{{< fa university >}} Research Associate in Immunology, Department of Immunology
>
> {{< fa envelope >}} <a href="mailto:[email protected]">[email protected]</a>
>
> **Office Hours**
>
> {{< fa calendar >}} By Appointment
:::
::: {.column width="50%"}
##### {{< fa user >}} Jessica Frank, Teaching Assistant
>
>{{< fa university >}} PhD Student at Immunology, HMS
>
> {{< fa envelope >}} <a href="mailto:[email protected]">[email protected]</a>
> **Office Hours**
>
> {{< fa calendar >}} By Appointment
:::
:::
## Schedule
```{r message=FALSE, warning=FALSE}
#| echo: false
#| message: false
library(tidyverse)
library(reactable)
library(reactablefmtr)
#Load schedule
sched <- read_csv("schedule.csv")
reactable(select(sched, `Session`, `Date`, `Time`), theme = flatly(), sortable = FALSE)
```