-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.qmd
More file actions
100 lines (76 loc) · 2.49 KB
/
Copy pathindex.qmd
File metadata and controls
100 lines (76 loc) · 2.49 KB
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
---
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, 2025.
This material is prepared through collaboration between Chris Magnano, PhD (Core for Computational Biomedicine at HMS), Eren Ada, PhD (Department of Immunology, HMS) and Martin Hemberg, PhD (Department of Neurology and Immunology, HMS).
### Details {.unnumbered}
{{< fa calendar >}} Sep 5 - Dec 5
{{< fa map-marker >}} TMEC 338 & 442[^1]
[^1]: Sessions will be in-person only.
### Instructors {.unnumbered}
:::: {.columns}
::: {.column width="25%"}
##### {{< fa user >}} Eren Ada, PhD
>
>{{< fa university >}} Research Associate in Immunology, Department of Immunology
>
> {{< fa envelope >}} <a href="mailto:eren_ada@hms.harvard.edu">eren_ada@hms.harvard.edu</a>
>
> **Office Hours**
>
> {{< fa calendar >}} By Appointment
:::
::: {.column width="25%"}
##### {{< fa user >}} Martin Hemberg, PhD
>
>{{< fa university >}} Associate Professor of Neurology and Immunology, Harvard Medical School
>
> {{< fa envelope >}} <a href="mailto:mhemberg@bwh.harvard.edu">mhemberg@bwh.harvard.edu</a>
>
> **Office Hours**
>
> {{< fa calendar >}} By Appointment
:::
::: {.column width="25%"}
##### {{< fa user >}} Nir Hacohen, PhD
>
>{{< fa university >}} Professor of Medicine, Harvard Medical School
>
> {{< fa envelope >}} <a href="mailto:NHACOHEN@mgh.harvard.edu">NHACOHEN@mgh.harvard.edu</a>
>
> **Office Hours**
>
> {{< fa calendar >}} By Appointment
:::
::: {.column width="25%"}
##### {{< fa user >}} Daniela D. Russo, Teaching Assistant
>
>{{< fa university >}} PhD Student at Immunology, HMS
>
> {{< fa envelope >}} <a href="mailto:ddrusso@g.harvard.edu">ddrusso@g.harvard.edu</a>
> **Office Hours**
>
> {{< fa calendar >}} By Appointment
:::
:::
## Schedule
```{r message=FALSE, warning=FALSE}
#| echo: false
#| message: false
# Check and install required packages
packages <- c("tidyverse", "reactable", "reactablefmtr")
for (pkg in packages) {
if (!require(pkg, character.only = TRUE, quietly = TRUE)) {
install.packages(pkg, dependencies = TRUE, repos = "https://cran.rstudio.com/")
library(pkg, character.only = TRUE)
}
}
#Load schedule
sched <- read_csv("schedule.csv")
reactable(select(sched, `Session`, `Date`, `Time`), theme = flatly(), sortable = FALSE)
```