-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathold_schedule.Rmd
378 lines (327 loc) · 11.1 KB
/
old_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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
---
---
<h1> Past Meetings </h1>
```{r, echo = FALSE, message = FALSE, warning = FALSE }
library(knitr)
library(tidyverse)
library(kableExtra)
```
## Spring 2024 Schedule
```{r, echo = FALSE, message = FALSE, warning = FALSE }
tib = tibble(
`Topics` = c(
"Website Development with Derek Lamb",
"Intro to SQL",
"Topics Speed Round",
"Intro to Beamer"),
`Date` = c(
"Feb 7, 2024 from 11:45am-12:45pm",
"Feb 28, 2024 from 11:45am-12:45pm",
"March 27, 2024 from 11:45am-12:45pm",
"April 10, 2024 from 11:45am-12:45pm")
,
`Location` = c(
"Hammer LL107",
"Hammer LL107",
"Hammer LL107",
"Hammer LL107")
)
kable(tib, row.names = FALSE) %>%
kable_styling(bootstrap_options = "striped") %>%
column_spec(1, width = "8em") %>%
column_spec(2, width = "20em") %>%
column_spec(3, width = "15em")
```
## Fall 2023 Schedule
```{r, echo = FALSE, message = FALSE, warning = FALSE }
tib = tibble(
`Topics` = c(
"How to set up your computer as a Statistician",
"Intro to Python",
"Intro to Latex"),
`Date` = c(
"September 19, 2023; 11:45 AM - 12:45 PM",
"October 11, 2023; 11:45 AM - 12:45 PM",
"November 15, 2023; 11:45 AM - 12:45 PM")
,
`Location` = c(
"ARB 532A",
"Hammer LL103",
"Hammer LL103")
)
kable(tib, row.names = FALSE) %>%
kable_styling(bootstrap_options = "striped") %>%
column_spec(1, width = "8em") %>%
column_spec(2, width = "20em") %>%
column_spec(3, width = "15em")
```
## Spring 2023 Schedule
```{r, echo = FALSE, message = FALSE, warning = FALSE }
tib = tibble(
`Topics` = c(
"Drawing DAGs in R, Colab with CILG",
"Making Presentations with Beamer"),
`Date` = c(
"Feburary 14, 2023; 11:45 AM - 12:45 PM",
"April 11, 2023; 11:45 AM - 12:45 PM")
,
`Location` = c(
"ARB 532A",
"Hammer 312")
)
kable(tib, row.names = FALSE) %>%
kable_styling(bootstrap_options = "striped") %>%
column_spec(1, width = "8em") %>%
column_spec(2, width = "20em") %>%
column_spec(3, width = "15em")
```
## Fall 2022 Schedule
```{r, echo = FALSE, message = FALSE, warning = FALSE }
tib = tibble(
`Topics` = c(
"How to Set Up Your Computer as a Statistician ",
"Latex + Beamer",
"Python",
#"TBD",
# "Beamer Presentations with Career China",
"RShiny"),
`Date` = c(
"September 20, 2022; 11:45 AM - 12:45 PM",
"October 18, 2022; 11:45 AM - 12:45 PM",
"November 1, 2022; 11:45 AM - 12:45 PM",
# "Mar. 30, 2022; 11:30 - 1:00pm",
# "April 13, 2022; 11:30 - 12:30pm",
"November 29, 2022; 11:45 AM - 12:45 PM")
,
`Location` = c(
"Hammer LL203",
"Hammer 312",
"Hammer 312",
#"TBD",
#"Zoom",
"Hammer LL210")
)
kable(tib, row.names = FALSE) %>%
kable_styling(bootstrap_options = "striped") %>%
column_spec(1, width = "8em") %>%
column_spec(2, width = "20em") %>%
column_spec(3, width = "15em")
```
## Spring 2022 Schedule
```{r, echo = FALSE, message = FALSE, warning = FALSE }
tib = tibble(
`Topics` = c(
"SQL ",
"R-Shiny",
"Cluster Computing",
#"TBD",
"Beamer Presentations with Career China",
"gtsummary with Daniel Sjoberg"),
`Date` = c(
"Feb. 8, 2022; 12:00 - 1:00pm",
"Feb. 23, 2022; 12:00 - 1:00pm",
"Mar. 16, 2022; 11:30 - 1:00pm",
# "Mar. 30, 2022; 11:30 - 1:00pm",
"April 13, 2022; 11:30 - 12:30pm",
"April 27, 2022; 11:30 - 1:00pm")
,
`Location` = c(
"Zoom",
"Zoom",
"Zoom",
#"TBD",
"Zoom",
"Zoom")
)
kable(tib, row.names = FALSE) %>%
kable_styling(bootstrap_options = "striped") %>%
column_spec(1, width = "8em") %>%
column_spec(2, width = "20em") %>%
column_spec(3, width = "15em")
```
## Spring 2021 Schedule
```{r, echo = FALSE, message = FALSE, warning = FALSE }
tib = tibble(
`Topics` = c(
"Website Design: How to market yourself with Christian Pascual",
"Intro to Cluster computing",
"gtsummary R package"),
`Date` = c(
"January 20, 2021; 12:00 - 1:00pm",
"March 31, 2021; 12:00 - 1:00pm",
"April 27, 2021; 12:00 - 1:00pm")
,
`Location` = c(
"Zoom",
"Zoom",
"Zoom")
)
kable(tib, row.names = FALSE) %>%
kable_styling(bootstrap_options = "striped") %>%
column_spec(1, width = "8em") %>%
column_spec(2, width = "20em") %>%
column_spec(3, width = "15em")
```
## Fall 2020 Schedule
```{r, echo = FALSE, message = FALSE, warning = FALSE }
tib = tibble(
`Topics` = c(
"Panel: Best practices as a graduate student",
"Introduction To LaTeX",
"SQL with Career China Club",
"GGplot packages",
"Python Tutorial"),
`Date` = c(
"September 16, 2020; 11:30 - 12:30pm",
"September 30, 2020; 11:30 - 12:30pm",
"October 14, 2020; 11:30 - 12:30pm",
"November 13, 2020; 11:30 - 12:30pm",
"December 9, 2020; 11:30 - 12:30pm")
,
`Location` = c(
"Zoom",
"Zoom",
"Zoom",
"Zoom",
"Zoom")
)
kable(tib, row.names = FALSE) %>%
kable_styling(bootstrap_options = "striped") %>%
column_spec(1, width = "8em") %>%
column_spec(2, width = "20em") %>%
column_spec(3, width = "15em")
```
## Spring 2020 Schedule
```{r, echo = FALSE, message = FALSE, warning = FALSE }
tib = tibble(
`Topic` = c("Introduction to Python",
"Introduction to SQL"),
`Date` = c("February 10, 2020; 4 - 4:50pm",
"March 2, 2020; 4 - 4:50pm"),
`Location` = c(
"Hammer LL103",
"Hammer LL103")
)
kable(tib, row.names = FALSE) %>%
kable_styling(bootstrap_options = "striped") %>%
column_spec(1, width = "8em") %>%
column_spec(2, width = "20em") %>%
column_spec(3, width = "15em")
```
## Fall 2019 Schedule
```{r, echo = FALSE, message = FALSE, warning = FALSE }
tib = tibble(
`Topic` = c("Speaker Panel",
"Using LaTeX in Overleaf & RMarkdown",
"A Biostatistician's Website",
"caret: Streamlining Model Tuning"),
`Date` = c("September 9, 2019; 4 - 4:50pm",
"October 14, 2019; 4 - 4:50pm",
"November 11, 2019; 4 - 4:50pm",
"December 2, 2019; 4 - 4:50pm"),
`Location` = c(
"Hammer LL203",
"Hammer LL107",
"Hammer LL107",
"Hammer LL107")
)
kable(tib, row.names = FALSE) %>%
kable_styling(bootstrap_options = "striped") %>%
column_spec(1, width = "8em") %>%
column_spec(2, width = "20em") %>%
column_spec(3, width = "15em")
```
## Spring 2019 Schedule
```{r, echo=FALSE, comment=FALSE, message=FALSE}
event1 <- c("January 28, 2019", "Intermediate Python", "Christian Pascual")
event2 <- c("March 5, 2019", "Interactive visualization using RStudio’s Shiny", "Julia Wrobel")
event3 <- c("March 19, 2019", "", "Angel Garcia de la Garza")
event4 <- c("April 29, 2019", "Making an R Package", "Nick Williams")
schedule <- rbind(event1, event2, event3, event4)
colnames(schedule) <- c("Date","Title", "Presenters")
kable(schedule, row.names = FALSE) %>%
kable_styling(bootstrap_options = "striped") %>%
column_spec(1, width = "8em") %>%
column_spec(2, width = "20em") %>%
column_spec(3, width = "15em")
```
## Fall 2018 Schedule
```{r, echo=FALSE, comment=FALSE, message=FALSE}
event1 <- c("", "Panel of Speakers", "")
event2 <- c("September 24, 2018", "Using LaTeX", "Yutao Liu")
event3 <- c("October 30, 2018", "Python for Beginners", "Christian Pascual")
event3 <- c("November 19, 2018", "Working with maps in R", "Angel Garcia de la Garza")
event4 <- c("December 3, 2018", "", "")
schedule <- rbind(event1,event2,event3,event4)
colnames(schedule) <- c("Date","Title", "Presenters")
kable(schedule, row.names = FALSE) %>%
kable_styling(bootstrap_options = "striped") %>%
column_spec(1, width = "8em") %>%
column_spec(2, width = "20em") %>%
column_spec(3, width = "15em")
```
## Spring 2018 Schedule
```{r, echo=FALSE, comment=FALSE, message=FALSE}
event1 <- c("February 5, 2018", "General Meeting", "Hartaig Singh and Margie Hannum")
event2 <- c("March 5, 2018", " Data Science with Python", "Michael Figueroa (from Columbia Data Science Institute)")
event3 <- c("March 19, 2018", "Introduction to Illustrator for Scientists \n \n
[Link to download materials and resources](http://tinyurl.com/k8ya4gk)", "Anjile An")
event4 <- c("April 2, 2018", "Stan for Bayesian Network Analysis", "Yutao Liu")
schedule <- rbind(event1,event2,event3,event4)
colnames(schedule) <- c("Date","Title", "Presenters")
kable(schedule, row.names = FALSE) %>%
kable_styling(bootstrap_options = "striped") %>%
column_spec(1, width = "8em") %>%
column_spec(2, width = "20em") %>%
column_spec(3, width = "15em")
```
## Fall 2017 Schedule
```{r, echo=FALSE, comment=FALSE, message=FALSE}
event1 <- c("September 11, 2017",
"How to Set Up Your Computer as a Statistician \n \n [Notes from presentation and panel discussion](resources_files/computer_091117.pdf)",
"Jeff Goldsmith \n \n Student Panel: Yutao Liu, Julia Wrobel, Karissa Whiting, and Brady Rippon")
event2 <- c("October 9, 2017",
"Split, Match, Replace and other ways to juggle multiple data types in R \n \n [Sample Genomic Data](resources_files/Manipulation_Data.zip) \n \n [Data Manipulation Tutorial Code](resources_files/cbcc_100917.R)",
"Margaret Hannum")
event3 <- c("October 16, 2017",
"LaTeX Workshop \n \n [LaTeX with Overleaf Slides](resources_files/latex_101617.pdf)",
"Brady Rippon")
event4 <- c("November 13, 2017",
"Using the OSX Terminal \n \n [Link to Julia's Tutorial](http://juliawrobel.com/tutorials/osx_terminal.html)",
"Julia Wrobel")
event5 <- c("December 4, 2017",
"Data Collection with SQL",
"Hartaig Singh")
schedule <- rbind(event1,event2,event3,event4,event5)
colnames(schedule) <- c("Date","Title", "Presenters")
kable(schedule, row.names = FALSE) %>%
kable_styling(bootstrap_options = "striped") %>%
column_spec(1, width = "8em") %>%
column_spec(2, width = "20em") %>%
column_spec(3, width = "15em")
```
## Spring 2017
```{r, echo=FALSE, comment=FALSE, message=FALSE}
event1 <- c("January 19, 2017",
"Introduction to R and R Markdown \n \n [rMarkdown Exercise](resources_files/RMD_Exercise.pdf) \n \n [Ariel's rMarkdown Slides](resources_files/RMD_slides.pdf) [Ariel's sample rMarkdown file](resources_files/SampleRMD.rmd)",
"Ariel Chernofsky")
event2 <- c("February 23, 2017",
"The beauty of ggplot2 \n \n [ggplot2 pdf](resources_files/ggplot2.pdf) \n \n [Jihui's rMarkdown file on ggplot2](resources_files/ggplot2.rmd)",
"Jihui Lee")
event3 <- c("March 23, 2017",
"Interactive visualization using RStudio’s Shiny \n \n [shiny slides](resources_files/shinySlides.html) \n \n
[hospitals dataset](resources_files/Hospital.csv) \n \n
[hospitals app](resources_files/hospitalApp.zip)",
"Julia Wrobel")
event4 <- c("April 20, 2017",
"Using GitHub for collaboration and version control \n \n [Jeff's slides](http://p8105.com/git.html)",
"Jeff Goldsmith")
schedule <- rbind(event1,event2,event3,event4)
colnames(schedule) <- c("Date","Title", "Presenters")
kable(schedule, row.names = FALSE) %>%
kable_styling(bootstrap_options = "striped") %>%
column_spec(1, width = "8em") %>%
column_spec(2, width = "20em") %>%
column_spec(3, width = "15em")
```
<p> </p>