Skip to content

Commit 11b7782

Browse files
committed
converted table to text to make accessible
1 parent 2f1e0a0 commit 11b7782

2 files changed

Lines changed: 92 additions & 33 deletions

File tree

8.45 KB
Binary file not shown.

class_materials/las6292_syllabus.qmd

Lines changed: 92 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@ _The contents of the course, including subjects covered in each course session a
179179
\vspace{0.2cm}
180180

181181
```{r outline, echo=FALSE}
182-
Week <- c(seq(1, 15, by = 1), "Finals Week")
183-
182+
# Week <- c(seq(1, 15, by = 1), "Finals Week")
183+
Week <- c(seq(1, 16, by = 1))
184184
Dates <- c(
185185
"1/16",
186186
"1/23",
@@ -215,24 +215,54 @@ Topic <- c(
215215
"Transcription & Translation",
216216
"Paperless Data Collection",
217217
"Automated Data Extraction",
218-
"No Class: Reading Days",
218+
"No Class - Reading Days",
219219
# "Legal, Ethical, and Emerging Issues",
220220
"Deadline for Final Project Submission: 10 AM"
221221
)
222222
223223
outline <- data.frame(Week, Dates, Topic)
224224
225-
kable(outline,
226-
align = "ccl",
227-
format = "latex",
228-
row.names = FALSE,
229-
booktabs = T,
230-
linesep = ""
231-
) %>% # removes the blank line after every 5 lines) %>%
232-
kable_styling(position = "center",latex_options = "HOLD_position")
225+
226+
outline2 <- outline %>%
227+
mutate(Week=if_else(as.numeric(Week)<16,paste0("**Week ",Week,"**"),"**Finals Week**")) %>%
228+
mutate(Week=paste0(Week," (",Dates,"): ",Topic)) %>%
229+
select(Week)
230+
231+
232+
outline <- outline %>%
233+
mutate(Week=as.character(Week)) %>%
234+
mutate(Week=if_else(as.numeric(Week)>15,"Finals Week",Week))
235+
#
236+
# kable(outline,
237+
# align = "ccl",
238+
# format = "latex",
239+
# row.names = FALSE,
240+
# booktabs = T, # removes the blank line after every 5 lines)
241+
# linesep = "",
242+
# escape=T) %>%
243+
# kable_styling(position = "center",latex_options = "HOLD_position")
244+
245+
233246
```
234247

235248

249+
`r outline2[1,]`
250+
`r outline2[2,]`
251+
`r outline2[3,]`
252+
`r outline2[4,]`
253+
`r outline2[5,]`
254+
`r outline2[6,]`
255+
`r outline2[7,]`
256+
`r outline2[8,]`
257+
`r outline2[9,]`
258+
`r outline2[10,]`
259+
`r outline2[11,]`
260+
`r outline2[12,]`
261+
`r outline2[13,]`
262+
`r outline2[14,]`
263+
`r outline2[15,]`
264+
`r outline2[16,]`
265+
236266
\vspace{0.3cm}
237267

238268
## Final Course Grades & Grading Policy {.unnumbered}
@@ -275,6 +305,15 @@ Assignment <- c(
275305
"TOTAL"
276306
)
277307
308+
Assignment2 <- c(
309+
"**Weekly in-class exercises**",
310+
# "DMP Peer Review",
311+
"**Data Management Plan**",
312+
# "Peer Code Review",
313+
"**Individual Data Cleanup Project**",
314+
"**TOTAL**"
315+
)
316+
278317
Points<- c(
279318
in_class_total,
280319
dmp,
@@ -289,11 +328,11 @@ Percentage<- c(
289328
paste("(",(round(course_total/course_total*100,1)),"%)", sep="")
290329
)
291330
292-
331+
Points2<-paste(Points, " points ",Percentage)
293332
Points<-paste(Points,Percentage)
294333
295334
Due<- c(
296-
"Following Friday at 9 am",
335+
"Friday following class at 9 am",
297336
# "21 March",
298337
"27 March",
299338
# "22 March",
@@ -303,21 +342,34 @@ Due<- c(
303342
304343
assignments <- data.frame(Assignment, Points,Due)
305344
names(assignments)<-c("Assignment", "Points (%)","Due")
345+
#
346+
# # outline<-bind_cols(Week,Dates,Topic)
347+
# kable(assignments,
348+
# align = "lcl",
349+
# format = "latex",
350+
# row.names = FALSE,
351+
# booktabs = T,
352+
# linesep = "") %>%
353+
# # removes the blank line after every 5 lines) %>%
354+
# kable_styling(position = "center",latex_options = "HOLD_position") %>%
355+
# row_spec(3,hline_after=T) %>%
356+
# add_indent(c(4)) %>%
357+
# row_spec(4, bold=T)
358+
359+
assignments2 <- data.frame(Assignment2, Points2,Due)
360+
assignments2<-assignments2 %>%
361+
mutate(Assignment2=paste0(Assignment2,": ",Points2, " due ", Due)) %>%
362+
select(Assignment2)
363+
```
364+
365+
366+
**The following course assignments are worth a total of `r course_total` points:**
367+
368+
`r assignments2[1,]`
369+
`r assignments2[2,]`
370+
`r assignments2[3,]`
306371

307-
# outline<-bind_cols(Week,Dates,Topic)
308-
kable(assignments,
309-
align = "lcl",
310-
format = "latex",
311-
row.names = FALSE,
312-
booktabs = T,
313-
linesep = "") %>%
314-
# removes the blank line after every 5 lines) %>%
315-
kable_styling(position = "center",latex_options = "HOLD_position") %>%
316-
row_spec(3,hline_after=T) %>%
317-
add_indent(c(4)) %>%
318-
row_spec(4, bold=T)
319372

320-
```
321373

322374
<!-- ```{r grades, echo=FALSE, include=TRUE,fig.cap="Final Course Grades", out.width = '3%', fig.pos='h', fig.align="left" } -->
323375
<!-- # knitr::include_graphics("./icons/magnifying-glass-chart.png") -->
@@ -354,14 +406,17 @@ Please review the assigned material *before* class. _All items are posted on the
354406
> ***Read:***
355407
356408
>1. Jan Čurn. 2014. How a bug in Dropbox permanently deleted my 8000 photos.
357-
[[read online]](https://medium.com/@jancurn/how-bug-in-dropbox-permanently-deleted-my-8000-photos-cb7dcf13647b) <!-- [[download pdf]](https://github.com/BrunaLab/LAS6292_DataManagement/blob/master/instructor-materials/Curn_2014.pdf)
409+
[[read online]](https://medium.com/@jancurn/how-bug-in-dropbox-permanently-deleted-my-8000-photos-cb7dcf13647b)
410+
<!-- [[download pdf]](https://github.com/BrunaLab/LAS6292_DataManagement/blob/master/instructor-materials/Curn_2014.pdf) -->
358411

359412
<!-- 2. PSA: Scrivener, Data Integrity and You. Or, How To Avoid Data Loss Heartbreak. -->
360413
<!-- [[read online]](https://www.reddit.com/r/writing/comments/62hr7o/psa_scrivener_data_integrity_and_you_or_how_to/) <!-- [[download pdf]](https://github.com/BrunaLab/LAS6292_DataManagement/blob/master/instructor-materials/Scrivener_PSA.pdf) -->
361414
362-
>2. Panzarino, M. 2012. How Pixar’s Toy Story 2 was deleted twice, once by technology and again for its own good. TNW. [[read online]](https://thenextweb.com/media/2012/05/21/how-pixars-toy-story-2-was-deleted-twice-once-by-technology-and-again-for-its-own-good/) <!-- <!-- [[download pdf]]
415+
>2. Panzarino, M. 2012. How Pixar’s Toy Story 2 was deleted twice, once by technology and again for its own good. TNW. [[read online]](https://thenextweb.com/media/2012/05/21/how-pixars-toy-story-2-was-deleted-twice-once-by-technology-and-again-for-its-own-good/)
363416
364-
>3. Hart EM et al. (2016) Ten Simple Rules for Digital Data Storage. PLoS Comput Biol 12(10): e1005097. [[read online]](https://doi.org/10.1371/journal.pcbi.1005097) <!-- <!-- [[download pdf]](https://github.com/BrunaLab/LAS6292_DataManagement/blob/master/instructor-materials/Hart_etal_2016.PDF)
417+
>3. Hart EM et al. (2016) Ten Simple Rules for Digital Data Storage. PLoS Comput Biol 12(10): e1005097. [[read online]](https://doi.org/10.1371/journal.pcbi.1005097)
418+
419+
<!-- [[download pdf]](https://github.com/BrunaLab/LAS6292_DataManagement/blob/master/instructor-materials/Hart_etal_2016.PDF) -->
365420

366421
> ***Watch:***
367422
@@ -378,9 +433,11 @@ Please review the assigned material *before* class. _All items are posted on the
378433
>**Read**
379434
380435
>1. Tesi, W. 2020. An Outdated Version of Excel Led the U.K. to Undercount COVID-19 Cases. Slate.
381-
[[read online]](https://slate.com/technology/2020/10/u-k-covid-19-spike-caused-by-microsoft-excel-error.html) <!-- <!-- [[download pdf]](https://github.com/BrunaLab/LAS6292_DataManagement/blob/master/instructor-materials/Tesi_2020.pdf)
436+
[[read online]](https://slate.com/technology/2020/10/u-k-covid-19-spike-caused-by-microsoft-excel-error.html)
437+
<!-- [[download pdf]](https://github.com/BrunaLab/LAS6292_DataManagement/blob/master/instructor-materials/Tesi_2020.pdf) -->
382438

383-
>2. Stolberg et al. 2020. CDC Test Counting Error Leaves Epidemiologists ‘Really Baffled’. NY Times. [[read online]](https://www.nytimes.com/2020/05/22/us/politics/coronavirus-tests-cdc.html?referringSource=articleShare) <!-- <!-- [[download pdf]](https://github.com/BrunaLab/LAS6292_DataManagement/blob/master/instructor-materials/Stolberg_2020_NYT.pdf)
439+
>2. Stolberg et al. 2020. CDC Test Counting Error Leaves Epidemiologists ‘Really Baffled’. NY Times. [[read online]](https://www.nytimes.com/2020/05/22/us/politics/coronavirus-tests-cdc.html?referringSource=articleShare)
440+
<!-- [[download pdf]](https://github.com/BrunaLab/LAS6292_DataManagement/blob/master/instructor-materials/Stolberg_2020_NYT.pdf) -->
384441
385442
>3. Broman, K. W., & Woo, K. H. (2018). Data organization in spreadsheets. The American Statistician, 72(1), 2-10. [[read online]](https://www.tandfonline.com/doi/full/10.1080/00031305.2017.1375989) <!-- [[download pdf]](https://github.com/BrunaLab/LAS6292_DataManagement/blob/master/instructor-materials/Broman%26Woo_2018.pdf) --->
386443
@@ -435,7 +492,9 @@ Please review the assigned material *before* class. _All items are posted on the
435492

436493
>**Read:**
437494
438-
>1. Rougier NP, Droettboom M, Bourne PE (2014) Ten Simple Rules for Better Figures. PLoS Comput Biol 10(9): e1003833. [[read online]](https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1003833) or <!-- [[download pdf]](https://journals.plos.org/ploscompbiol/article/file?id=10.1371/journal.pcbi.1003833&type=printable)
495+
>1. Rougier NP, Droettboom M, Bourne PE (2014) Ten Simple Rules for Better Figures. PLoS Comput Biol 10(9): e1003833. [[read online]](https://journals.plos.org/ploscompbiol/article?id=10.1371/journal.pcbi.1003833)
496+
497+
<!-- [[download pdf]](https://journals.plos.org/ploscompbiol/article/file?id=10.1371/journal.pcbi.1003833&type=printable) -->
439498

440499
>**Watch:**
441500
@@ -450,7 +509,7 @@ Please review the assigned material *before* class. _All items are posted on the
450509

451510
>**Read (Metadata):**
452511
453-
>1. Michener, W.K., et al . 1997. Non-geospatial metadata for the ecological sciences. Ecological Applications 7: 330–342. [[read online]](https://esajournals.onlinelibrary.wiley.com/doi/abs/10.1890/1051-0761%281997%29007%5B0330%3ANMFTES%5D2.0.CO%3B2)
512+
>1. Michener, W.K., et al. 1997. Non-geospatial metadata for the ecological sciences. Ecological Applications 7: 330–342. [[read online]](https://esajournals.onlinelibrary.wiley.com/doi/abs/10.1890/1051-0761%281997%29007%5B0330%3ANMFTES%5D2.0.CO%3B2)
454513
455514
<!-- [[download pdf]](https://github.com/BrunaLab/LAS6292_DataManagement/blob/master/instructor-materials/Michener_etal_1997_EcolApplications.pdf) --->
456515

0 commit comments

Comments
 (0)