-
Notifications
You must be signed in to change notification settings - Fork 1
/
_list_of_lectures.Rmd
412 lines (374 loc) · 14 KB
/
_list_of_lectures.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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
---
title: "2021 List of Lectures"
output: html_document
---
```{r include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
```{r}
## day 0 ####
intro_1 <- list(
title = "Introduction",
topics = c("<b>Course overview</b>"),
pdf = c(""),
rmd = c("lectures/week_01/lec_00_class_overview.Rmd"),
html = c("lectures/week_01/lec_00_class_overview.html"),
background = c(""),
zoom = ""
)
## day 1 ####
intro_2 <- list(
title = "Introduction",
topics = c("<b>What is data science?</b>", "Types of questions", "Storytelling"),
pdf = c(""),
rmd = c("lectures/week_01/lec_01_class_overview.Rmd"),
html = c("lectures/week_01/lec_01_class_overview.html"),
background = c("[Leek & Peng (2015)](references/Leek_Peng_2015_what_is_the_Q.pdf)", "[D’Agostino McGowan (2020)](https://docs.google.com/presentation/d/1pZe8Sp350iYzsKsweZzR374179gvRwpI3cAX_NObgj8/edit#slide=id.p)", "[Peng (2018)](https://simplystatistics.org/posts/2018-06-04-trustworthy-data-analysis/)"),
zoom = ""
)
## day 2 ####
analysis_steps <- list(
title = "Steps to an analysis",
topics = c("<b>Steps to an analysis</b>", "Informal vs formal", "Rubrics", "Required software"),
pdf = c(""),
rmd = c("lectures/week_01/lec_02_analysis_steps_software.Rmd"),
html = c("lectures/week_01/lec_02_analysis_steps_software.html"),
background = c("[Cooper & Hsing (2017)](references/BES_guide_to_reproducible_code.pdf)"),
zoom = ""
)
## day 3 ####
organization_styles <- list(
title = "Organization & styles",
topics = c("<b>Organization & styles</b>", "Research compendia", "Coding styles"),
pdf = c(""),
rmd = c("lectures/week_01/lec_03_orgs_styles.Rmd"),
html = c("lectures/week_01/lec_03_orgs_styles.html"),
background = c("[Marwick et al (2018)](references/Marwick_etal_2018_research_compendia.pdf)",
"[Tidyverse Style Guide](https://style.tidyverse.org/)"),
zoom = ""
)
## day 4 ####
github <- list(
title = "Introduction to GitHub",
topics = c("<b>Introduction to GitHub</b>", "Repositories", "Markdown", "Issues", "Projects"),
pdf = c(""),
rmd = c("lectures/week_02/lec_04_intro_github.Rmd"),
html = c("lectures/week_02/lec_04_intro_github.html"),
background = c("[Intro to GitHub](https://guides.github.com/activities/hello-world/)"),
zoom = ""
)
## day 5 ####
version_control <- list(
title = "Version control",
topics = c("<b>Version control with Git</b>", "Adding files", "Committing file", "Exploring history", "Reverting files"),
pdf = c(""),
rmd = c("lectures/week_02/lec_05_intro_git.Rmd"),
html = c("lectures/week_02/lec_05_intro_git.html"),
background = c("[Blischak et al (2016)](https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1004668)",
"[Chap 20 of HGG](https://happygitwithr.com/git-basics.html)"),
zoom = ""
)
## day 6 ####
remotes <- list(
title = "Remote repositories",
topics = c("<b>Remote repositories</b>", "Remotes in GitHub", "RStudio projects", "Pushing/pulling"),
pdf = c(""),
rmd = c("lectures/week_02/lec_06_git_remotes.Rmd"),
html = c("lectures/week_02/lec_06_git_remotes.html"),
background = c("[RStudio cheatsheet](references/rstudio_cheatsheet.pdf)",
"[Chaps 9 & 10 of HGG](https://happygitwithr.com/)"),
zoom = ""
)
## day 7 ####
holiday_1 <- list(
title = "Martin Luther King Jr. Day",
topics = c("<i>Martin Luther King, Jr. Day</i>", "<b>No class</b>"),
pdf = c(""),
rmd = "",
html = "",
background = "",
zoom = ""
)
## day 8 ####
workflows <- list(
title = "Understanding workflows",
topics = c("<b>Understanding workflows</b>", "Centralized", "Feature branch", "Forking"),
pdf = c(""),
rmd = c("lectures/week_03/lec_08_workflows.Rmd",
"lectures/week_03/lec_08_workflows_ex.Rmd"),
html = c("lectures/week_03/lec_08_workflows.html",
"lectures/week_03/lec_08_workflows_ex.html"),
background = c("[Sec VI of HGG](https://happygitwithr.com/workflows-intro.html)",
"[Learn Git branching](https://pcottle.github.com/learnGitBranching/)"),
zoom = ""
)
## day 9 ####
working_with_data <- list(
title = "Working with data",
topics = c("<b>Working with data</b>", "Chain of custody", "Tidy data", "Manual entry"),
pdf = c(""),
rmd = "lectures/week_03/lec_09_working_with_data.Rmd",
html = "lectures/week_03/lec_09_working_with_data.html",
background = c("[Ellis & Leek (2017)](references/Ellis_Leek_2017_how_to_share_data.pdf)",
"[Broman & Woo (2018)](references/Broman_Woo_2018_data_in_spreadsheets.pdf)"),
zoom = ""
)
## day 10 ####
data_ingest <- list(
title = "Reading data",
topics = c("<b>Reading data</b>", "Importing text files", "Reading from Excel & Google"),
pdf = c(""),
rmd = "lectures/week_04/lec_10_getting_data.Rmd",
html = "lectures/week_04/lec_10_getting_data.html",
background = c("[readr pkg](https://readr.tidyverse.org/)",
"[readxl pkg](https://readxl.tidyverse.org/)",
"[googlesheets pkg](https://googlesheets4.tidyverse.org/index.html)",
"[jsonlite pkg](https://cran.r-project.org/web/packages/jsonlite/vignettes/json-aaquickstart.html)"),
zoom = ""
)
## day 11 ####
data_cleaning <- list(
title = "Data cleaning",
topics = c("<b>Data cleaning</b>", "Reshaping", "Filtering", "Summarizing"),
pdf = c(""),
rmd = "",
html = "",
background = "",
zoom = ""
)
## day 11 ####
getting_help <- list(
title = "Getting help",
topics = c("<b>Getting help</b>", "Minimal", "Complete", "Reproducible"),
pdf = c(""),
rmd = "lectures/week_04/lec_11_getting_help.Rmd",
html = "lectures/week_04/lec_11_getting_help.html",
background = c("[Maelle Salmon's blog](https://masalmon.eu/2018/07/22/wheretogethelp/)",
"[Reprex do's & don'ts](https://reprex.tidyverse.org/articles/reprex-dos-and-donts.html)"),
zoom = ""
)
## day 12 ####
guest_woo <- list(
title = "Data science for fun and nonprofit",
topics = c("<i>Kara Woo</i>", "<b>Data science for fun and nonprofit</b>",
"Guest presentation"),
pdf = c(""),
rmd = "",
html = "lectures/week_04/lec_12_kara_woo.html",
background = "[Kara's website](https://karawoo.com/)",
zoom = ""
)
## day 13 ####
databases_1 <- list(
title = "Intro to relational databases",
topics = c("<i>Jennifer Scheuerell</i>", "<b>Intro to relational databases</b>", "SQL programming language", "PostgreSQL & its community"),
pdf = c(""),
rmd = "lectures/week_05/lec_13_intro_databases.Rmd",
html = "lectures/week_05/lec_13_intro_databases.html",
background = c("[About PostgreSQL](https://www.postgresql.org/about/)",
"[Installing PostgreSQL](https://github.com/sureL/postgres-tutorial/issues/4)",
"[Troubleshooting PostgreSQL](https://github.com/sureL/postgres-tutorial/issues/23)"),
zoom = ""
)
## day 14 ####
databases_2 <- list(
title = "Database design (pt 1)",
topics = c("<i>Jennifer Scheuerell</i>", "<b>Creating a database</b>", "New users & databases", "Adding data"),
pdf = c(""),
rmd = "lectures/week_05/lec_14_intro_databases.Rmd",
html = "lectures/week_05/lec_14_intro_databases.html",
background = "",
zoom = ""
)
## day 15 ####
databases_3 <- list(
title = "Database design (pt 2)",
topics = c("<i>Jennifer Scheuerell</i>", "<b>Working with a database</b>", "Cleaning data", "Joining tables"),
pdf = c(""),
rmd = "lectures/week_05/lec_15_intro_databases.Rmd",
html = "lectures/week_05/lec_15_intro_databases.html",
background = "",
zoom = ""
)
## day 16 ####
review <- list(
title = "Topic reviews",
topics = c("<b>Review session</b>", "Workflows", "Reprexes", "Databases"),
pdf = c(""),
rmd = "",
html = "",
background = "",
zoom = ""
)
## day 17 ####
metadata <- list(
title = "Metadata",
topics = c("<b>Metadata</b>", "Types of metadata", "Ecological Metadata Language"),
pdf = c(""),
rmd = "lectures/week_06/lec_17_metadata.Rmd",
html = "lectures/week_06/lec_17_metadata.html",
background = c("[Michener (2005)](references/Michener_2005_meta_info_concepts.pdf)",
"[Fegraus et al (2005)](references/Fegraus_2005_intro_EML.pdf)",
"[EML specification](https://eml.ecoinformatics.org/)",
"[EML package](https://docs.ropensci.org/EML/)"),
zoom = ""
)
## day 18a ####
visualization <- list(
title = "Data visualization",
topics = c("<b>Data visualization</b>", "Design principles", "Exploratory figures", "Expository figures"),
pdf = c(""),
rmd = "",
html = "",
background = "",
zoom = ""
)
## day 18b ####
analysis_visualization <- list(
title = "Data analysis & visualization",
topics = c("<b>Data analysis & visualization</b>", "Data summaries", "Design principles", "Exploratory figures", "Expository figures"),
pdf = c(""),
rmd = "lectures/week_06/lec_18_analysis_viz.Rmd",
html = "lectures/week_06/lec_18_analysis_viz.html",
background = c("[R Graph Gallery](https://www.r-graph-gallery.com/)",
"[STAT 545 Do's & Don'ts](https://stat545.com/effective-graphs.html)"),
zoom = ""
)
## day 19 ####
holiday_2 <- list(
title = "President's Day",
topics = c("<i>President's Day</i>", "<b>No class</b>"),
pdf = c(""),
rmd = "",
html = "",
background = "",
zoom = ""
)
## day 20 ####
markdown_1 <- list(
title = "R Markdown",
topics = c("<b>R Markdown</b>", "Introduction", "Publishing papers"),
pdf = c(""),
rmd = "lectures/week_07/lec_20_markdown_1.Rmd",
html = "lectures/week_07/lec_20_markdown_1.html",
background = "[Intro to R Markdown](lectures/week_07/intro_rmarkdown.html)",
zoom = ""
)
## day 21 ####
markdown_2 <- list(
title = "R Markdown",
topics = c("<b>R Markdown</b>", "Publishing papers", "Reporting"),
pdf = c(""),
rmd = "lectures/week_07/lec_21_markdown_2.Rmd",
html = "lectures/week_07/lec_21_markdown_2.html",
background = "[Chap 6 of Markdown Cookbook](https://bookdown.org/yihui/rmarkdown-cookbook/latex-output.html)",
zoom = ""
)
## day 22 ####
guest_holmes <- list(
title = "Guest presentation",
topics = c("<i>Dr. Elizabeth Holmes</i>", "<b>Data science teamwork & data science sprints</b>",
"Guest presentation"),
pdf = c(""),
rmd = "lectures/week_09/Agile-Mar-3-2023.qmd",
html = "https://rverse-tutorials.github.io/quarto_slides/Agile-Mar-3-2023.html",
background = "[Short Agile Videos](https://rverse-tutorials.github.io/quarto_slides/Agile-Mar-3-2023.html#/videos-to-learn-more)",
zoom = ""
)
## day 23 ####
packages_1 <- list(
title = "R packages",
topics = c("<b>R packages</b>", "Functions", "Documentation"),
pdf = c(""),
rmd = "lectures/week_08/lec_23_packages_1.Rmd",
html = "lectures/week_08/lec_23_packages_1.html",
background = "[Wickham & Bryan (2020)](https://r-pkgs.org/index.html)",
zoom = ""
)
## day 24 ####
packages_2 <- list(
title = "R packages",
topics = c("<b>R packages</b>", "Unit tests", "Vignettes", "Websites"),
pdf = c(""),
rmd = "lectures/week_08/lec_24_packages_2.Rmd",
html = "lectures/week_08/lec_24_packages_2.html",
background = "[Wickham & Bryan (2020)](https://r-pkgs.org/index.html)",
zoom = ""
)
## day 25 ####
shiny_1 <- list(
title = "Shiny apps",
topics = c("<i>Dr. Margaret Siple</i>", "<b>Shiny apps</b>", "Introduction"),
pdf = c(""),
rmd = "lectures/week_09/lec_25_intro_shiny_1.Rmd",
html = "lectures/week_09/lec_25_intro_shiny_1.html",
background = c("[RStudio Shiny apps](https://shiny.rstudio.com/)",
"[Sievert (2019)](https://plotly-r.com/)"),
zoom = ""
)
## day 26 ####
shiny_2 <- list(
title = "Shiny apps",
topics = c("<i>Dr. Margaret Siple</i>", "<b>Shiny apps</b>", "Development", "Deployment"),
pdf = c(""),
rmd = "lectures/week_09/lec_26_intro_shiny_2.Rmd",
html = "lectures/week_09/lec_26_intro_shiny_2.html",
background = "[Shiny App Contest](https://blog.rstudio.com/2020/07/13/winners-of-the-2nd-shiny-contest/)",
zoom = ""
)
## day 27 ####
markdown_3 <- list(
title = "R Markdown",
topics = c("<b>R Markdown</b>", "Designing presentations"),
pdf = c(""),
rmd = "lectures/week_09/lec_27_presentations.Rmd",
html = "lectures/week_09/lec_27_presentations.html",
background = ("[Chap 4 of Xie et al. (2014)](https://bookdown.org/yihui/rmarkdown/presentations.html)"),
zoom = ""
)
## day 28 ####
markdown_4 <- list(
title = "R Markdown",
topics = c("<b>R Markdown</b>", "Building simple websites"),
pdf = c(""),
rmd = "lectures/week_10/lec_28_websites.Rmd",
html = "lectures/week_10/lec_28_websites.html",
background = c("[GitHub Pages](https://pages.github.com/)",
"[Chap 17 of HGG](https://happygitwithr.com/existing-github-last.html)"),
zoom = ""
)
## day ?? ####
docker <- list(
title = "Dockers",
topics = c("<b>Dockers</b>", "Containers", "Images"),
pdf = "",
rmd = "",
html = c("lectures/week_10/rocker_workflow.pdf"),
background = c("[Rocker Project](https://rocker-project.org/)",
"[Intro to Docker for R Users](https://colinfay.me/docker-r-reproducibility/)"),
zoom = ""
)
## day 29 ####
code_reviews <- list(
title = "Code reviews",
topics = c("<b>Code reviews</b>", "Checklists", "Do's and Don'ts"),
pdf = c(""),
rmd = "lectures/week_10/lec_29_code_reviews.Rmd",
html = "lectures/week_10/lec_29_code_reviews.html",
background = c("[rOpenSci Guide](https://devguide.ropensci.org/index.html)"),
zoom = ""
)
## day 30 ####
ethics <- list(
title = "Ethics in data science",
topics = c("<b>Ethics in data science</b>", "Data selection", "Analysis & inference"),
pdf = c(""),
rmd = "lectures/week_10/lec_30_data_ethics.Rmd",
html = "lectures/week_10/lec_30_data_ethics.html",
background = c("[FAIR data principles](https://www.go-fair.org/fair-principles/)",
"[CARE data principles](https://static1.squarespace.com/static/5d3799de845604000199cd24/t/5da9f4479ecab221ce848fb2/1571419335217/CARE+Principles_One+Pagers+FINAL_Oct_17_2019.pdf)",
"[Lum (2018) Bias in data](https://www.youtube.com/watch?v=5zxDwA99soA)",
"[Fox (2020) Faculty job market](https://esajournals.onlinelibrary.wiley.com/doi/full/10.1002/bes2.1624)"),
zoom = ""
)
```