-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslides.Rmd
763 lines (636 loc) · 22.3 KB
/
slides.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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
---
title: "Oddly Satisfying"
subtitle: "Find delight in the mundane"
author: "Liz Roten"
date: "July 27, 2022"
output:
xaringan::moon_reader:
self_contained: true
chakra: ./assets/libs/remark-latest.min.js
css: ["./assets/css/xaringan-themer.css", "./assets/xaringan_columns/cols.css"]
includes:
in_header: "./assets/header.html"
nature:
beforeInit: "./assets/xaringan_columns/cols_macro.js"
slideNumberFormat: "%current%"
highlightStyle: github
highlightLines: true
ratio: 16:9
countIncrementalSlides: false
---
```{r setup, include=FALSE}
options(htmltools.dir.version = FALSE,
crayon.enabled = TRUE)
knitr::opts_chunk$set(
fig.showtext = TRUE,
fig.width = 9,
fig.height = 3.5,
fig.retina = 3,
out.width = "100%",
cache = FALSE,
echo = TRUE,
message = FALSE,
warning = FALSE,
hiline = TRUE
)
old_hooks <- fansi::set_knit_hooks(knitr::knit_hooks,
which = c("output", "message", "error")
)
library(xaringanthemer)
library(dplyr)
library(dutchmasters)
library(xaringanExtra)
library(RefManageR)
library(knitr)
library(patchwork)
library(aRtsy)
library(tibble)
library(fs)
palette <- readRDS("data/palette.RDS")
brick <- palette %>% filter(family == "brick", level == 1)
noil_black <- palette %>% filter(family == "noil_black", level == 1)
dutch_white <- palette %>% filter(family == "white", level == 45)
acorn <- palette %>% filter(family == "acorn", level == 1)
midnight <- palette %>% filter(family == "midnight", level == 1)
clay <- palette %>% filter(family == "clay", level == 1)
seaweed <- palette %>% filter(family == "seaweed", level == 25)
```
```{r xaringan-banner, echo=FALSE}
xaringanExtra::use_banner(
bottom_right = '<a href="https://lizroten.com/oddly" target="_blank" style="color: #5A6E73">lizroten.com/oddly</a>',
bottom_left = "rstudio::conf(2022)",
exclude = c("title-slide",
"inverse"))
```
```{r xaringan-themer, include=FALSE, warning=FALSE}
style_duo_accent(
# basic colors
text_slide_number_font_size = 0,
white_color = dutch_white$code,
black_color = noil_black$code,
footnote_color = midnight$code,
text_slide_number_color = midnight$code,
# themed colors
primary_color = brick$code,
secondary_color = acorn$code,
inverse_header_color = "#FFFFFF",
link_color = seaweed$code,
link_decoration = "underline",
# typography
text_font_google = google_font("Quicksand", "400"),
header_font_google = google_font("Forum","400"),
inverse_text_color = dutch_white$code,
text_font_weight = 300,
text_font_size = "28pt",
header_font_weight = "400",
header_h1_font_size = "70pt",
header_h2_font_size = "50pt",
header_h3_font_size = "40pt",
extra_css = list(
".subtitle h2" = list("font-size" = "34pt",
"font-family" = "var(--text-font-family)",
"font-weight" = 300
),
".date h3, .author h3" = list(
"font-size" = "30pt",
"margin" = "0"
),
".left-column" = list(
"width" = "50%"
),
".right-column" = list(
"width" = "50%"
),
".remark-slide-content.end-matter.hljs-github p" = list(
"font-size" = "10pt",
"line-height" = "1"
),
".panel-tabs" = list(
"font-size" = "35pt"
),
".panelset .panel-tabs .panel-tab.panel-tab-active" = list(
"font-weight"= "bold",
"text-decoration" = "underline",
"color" = midnight$code
),
"strong" = list(
"font-weight" = "bold",
"color" = "var(--text-bold-color)",
"text-decoration" = "underline"
),
".pull-right + *" = list(
"clear"= "none"),
".xe-banner" = list(
"color" = midnight$code,
"font-size" = "0.65em"
),
".inverse > .xe-banner" = list(
"color" = "transparent"
),
".inverse a, .inverse a .xe-banner > code" =
list(
"color" = "transparent !important",
"text-decoration" = "none"
)
),
title_slide_background_image = "../../supporting-materials_files/figure-html/watercolor-plot-1.png",
# etc.
outfile = "assets/css/xaringan-themer.css"
)
xaringanExtra::use_xaringan_extra(c("tile_view", "banner", "animate", "panelset"))
```
.center[
<img src="assets/fig/mndot_4plus_single.png" alt="A black and white line art illustration of a large truck" style="transform: scaleX(-1);">]
<!-- I went to open the existing materials, and -->
--
.center[
## it was bad]
<!-- This project was pitched to me as a quick data science win. -->
<!-- It would be straightforward, simple, and logical -->
<!-- We are just updating some data -->
<!-- This was a lie. -->
<!-- In fact, what was left to me was a mess -->
---
## ...how bad?
<!-- You might be asking, why is this so bad? -->
<!-- and because there are so many and you can't read the text, let me describe it -->
<!-- we have several things going on -->
--
.pull-left[
<img src="assets/fig/extant-dirs.png" alt="A screenshot of many files" style="max-width: 75%">
]
--
.pull-right[
<!-- Which one is *actually* the final one? Is it the most recent chronologically or
the most recently opened or edited? -->
<li>Multiple final reports</li>
]
--
.pull-right[
<!-- some document are marked as revised. but who revised them,
and why were they revised?-->
<li>Multiple revised documents</li>
]
--
.pull-right[
<!-- In this excel document, there are several sheets with interdependent formulas
One sheet has over 15,000 rows! -->
<li>One Excel workbook, with all the analysis</li>
]
<!-- I realized that this project was going to be more than I thought it was
I also got really into this internet phenomenon of oddly satisfying things-->
<!-- what is an oddly satisfying thing? -->
---
## Oddly satisfying
--
.center[
<img src="assets/fig/crab_with_fish.jpg" alt="A tiny crab holding a tiny fish" height="350px">
]
---
--
.pull-left[
### Smoothie!
<video id="smoothie" controls muted height="400px" width="500px"
src="assets/fig/smoothie_satisfying.mp4" type="video/mp4">
</video>]
--
.pull-right[
### Tarts!
<video id="tart-icing" controls muted height="400px" width="500px" src="assets/fig/tart_icing.mp4" type="video/mp4">
</video>]
---
<!-- there is something about this type of video that just calms my soul -->
I decided to take my truck,
.center[
<br>
<br>
<div>
<img src="assets/fig/mndot_4plus_single.png" alt="A black and white line art illustration of a large truck" style="transform: scaleX(-1); position: absolute;left: 447px;top: 400px;">
<img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/microsoft/310/crying-face_1f622.png" alt="Crying face emoji" width="70px" style="position: absolute; top: 321px; left: 47%">
</div>
]
---
I decided to take my truck, and make it the best truck
.center[
<div class="center">
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c9/Rainbow-diagram-ROYGBIV.svg/800px-Rainbow-diagram-ROYGBIV.svg.png?20200807113632" alt="A classic rainbow with 8 colors" style= "position:relative;">
<img src="assets/fig/mndot_4plus_single.png" alt="A black and white line art illustration of a large truck" style="transform: scaleX(-1); position: absolute;left: 447px;top: 400px;">
<img src="https://emojipedia-us.s3.dualstack.us-west-1.amazonaws.com/thumbs/120/microsoft/310/grinning-face-with-big-eyes_1f603.png" alt="Grinning face with big eyes emoji" width="70px" style="position: absolute; top: 321px; left: 47%">
</div>
]
---
## 1. 🔥 Assess the damage
--
## 2. 📄 Do and document
--
## 3. 🎁 Leave a gift
---
class: inverse center middle
# Assess the damage
---
## Complete an intake
--
- Read through everything
---
## Complete an intake
- Read through everything .primary[-- actually everything]
--
- Make a hate list
<!-- Not of people! Just bad documentation
Maybe the longform documentation doesn't match whats happening in the Excel workbook
Maybe some of the notes are super vague-->
--
<!-- You may find yourself in a place where the long-form PDF documentation doesn't align with what is happening in an Excel workbook -->
<!-- This is the time to resolve that, and start thinking
about how you want to -->
- Replicate findings/results
--
- Find your ✨thing✨
---
class: center middle animated fadeInUp
<!-- but, most importantly, you must find your thing -->
<div id="thing">
.center.animated.fadeInUp[
## Find your ✨thing✨
]
</div>
---
<!-- Find some aspect of this project you can make shine. -->
.panelset.sideways[
.panel[.panel-name[Plots?]
<!-- finally see what that pretty plot on twitter is all about -->
<img src="assets/fig/plot_score_abs_change_combo-1.png" alt="a ggplot with multiple data distribution visualization methods" width="70%">
]
.panel[.panel-name[Maps?]
<!-- prepare to make some bespoke ggplot2 legends -->
<img src="assets/fig/map_all_tiers-1.png" alt="a ggplot with multiple data distribution visualization methods" width="70%">
]
.panel[.panel-name[Speed?]
<!-- watch out, because your machine is going to be running *hot* -->
```{r, eval=FALSE}
# Conflate proposed corridors with MnDOT AADT and HCAADT -----
proposed_conflation_match <- purrr::map_dfr(
1:nrow(all_prop_corridors),
function(x) {
first_join <- sf::st_join(all_prop_corridors[x, ] %>%
sf::st_transform(26915),
aadt %>%
unique() %>%
sf::st_transform(26915),
largest = FALSE,
left = TRUE)
...
})
```
]
]
---
Your ✨thing✨ is what will power the project
<img src="assets/fig/mndot_4plus_single.png" alt="A black and white line art illustration of a large truck" style="transform: scaleX(-1); position: absolute;left: 447px;top: 400px;">
--
and keep you sane
---
class: inverse center middle
# Do and document
---
## Complete the work, document along the way
--
> Documentation is a love letter to your future self. - Damien Conway
---
### Modularize
.pull-left[
<img src="assets/fig/cranberry-tart.webp" alt="An image of a cranberry tart, cut into even slices with beautiful decoration" style="transform: scaleX(-1);">
]
--
.pull-right[
No single script more than 500 lines
]
---
### Modularize
.pull-left[
<!-- here, we have a bulky script that may do more than we actually need it to -->
```{r, eval=FALSE}
all_prop_corridors <- corridors %>%
filter(proposed == TRUE)
proposed_conflation_match <- purrr::map_dfr(
1:nrow(all_prop_corridors),
function(x) {
first_join <- sf::st_join(
all_prop_corridors[x, ],
aadt %>%
unique(),
largest = FALSE,
left = TRUE)
...
})
```
]
--
.pull-right[
<!-- here, we've broken out each script into its core functions.
I can call load_pkgs.R from anywhere, and I know it will JUST call library().
You can also use numeric prefixes 00, 01, 02 to denote sequential operations-->
```{r, eval=FALSE}
source("load_pkgs.R")
source("load_data.R")
source("01_conflate_corridors.R")
source("02_score_clusters.R")
source("03_score_facilities.R")
```
]
---
### Modularize
.pull-left[
<!-- here, we have a bulky script that may do more than we actually need it to -->
```{r, eval=FALSE}
all_prop_corridors <- corridors %>%
filter(proposed == TRUE)
proposed_conflation_match <- purrr::map_dfr(
1:nrow(all_prop_corridors),
function(x) {
first_join <- sf::st_join(
all_prop_corridors[x, ],
aadt %>%
unique(),
largest = FALSE,
left = TRUE)
...
})
```
]
.pull-right[
<!-- here, we've broken out each script into its core functions.
I can call load_pkgs.R from anywhere, and I know it will JUST call library().
You can also use numeric prefixes 00, 01, 02 to denote sequential operations-->
```{r, eval=FALSE}
source("load_pkgs.R") #<<
source("load_data.R")
source("01_conflate_corridors.R")
source("02_score_clusters.R")
source("03_score_facilities.R")
```
]
---
### Modularize
.pull-left[
<!-- here, we have a bulky script that may do more than we actually need it to -->
```{r, eval=FALSE}
all_prop_corridors <- corridors %>%
filter(proposed == TRUE)
proposed_conflation_match <- purrr::map_dfr(
1:nrow(all_prop_corridors),
function(x) {
first_join <- sf::st_join(
all_prop_corridors[x, ],
aadt %>%
unique(),
largest = FALSE,
left = TRUE)
...
})
```
]
.pull-right[
<!-- here, we've broken out each script into its core functions.
I can call load_pkgs.R from anywhere, and I know it will JUST call library().
You can also use numeric prefixes 00, 01, 02 to denote sequential operations-->
```{r, eval=FALSE}
source("load_pkgs.R")
source("load_data.R") #<<
source("01_conflate_corridors.R")
source("02_score_clusters.R")
source("03_score_facilities.R")
```
]
---
## Make a bespoke README
--
.readme-def[
> <i>noun</i>
> an explanatory document that accompanies computer files or software
]
<br/>
--
![:col_header Context]
---
## Make a bespoke README
.readme-def[
> <i>noun</i>
> an explanatory document that accompanies computer files or software
]
<br/>
![:col_header Context, Structure]
---
## Make a bespoke README
.readme-def[
> <i>noun</i>
> an explanatory document that accompanies computer files or software
]
<br/>
![:col_header Context, Structure, Key information]
---
.panelset[
.panel[.panel-name[Context]
.pull-left[
<img width="600px" src="assets/fig/readme-intro.png" alt="A screenshot of a README document">
]
.pull-right[
- What even **is** this thing?
- Why does this thing exist?
- What is the history?
]
.panel[.panel-name[Structure]
.pull-left[
<img width="600px" src="assets/fig/readme-structure.png" alt="A screenshot of a README document">]
.pull-right[
- How is it organized?
<!-- Please, let there be a system -->
- Where does the data live?
- Where do you actually **do** the thing?
]
]
.panel[.panel-name[Key]
.pull-left[<img width="600px" src="assets/fig/readme-key.png" alt="A screenshot of a README document">
]
.pull-right[
- Hate list -> Love list
- At the most fundamental level, what is the operative component and how is it done?
- Link to specific scripts!
]
]
]
]
---
class: inverse center middle
# Leave a gift,
## not a mystery
---
## Post project debrief
.center[
<video id="gift-video" controls muted height="400px" width="500px" src="assets/fig/leave-a-gift.mp4" type="video/mp4">
</video>
]
---
## Post project debrief
.pull-left[
.center[
<img width="200px" src="assets/fig/leave-a-gift.jpg" alt="A still image of a beautifully wrapped gift">]
]
.pull-right[
- Take a break!
<!-- Once the project is complete, and really truly complete, take a break -->
<!-- - You should be a slightly different person than when you closed the project -->
]
---
## Post project debrief
.pull-left[
.center[
<img width="200px" src="assets/fig/leave-a-gift.jpg" alt="A still image of a beautifully wrapped gift">]
]
.pull-right[
- Take a break!
- Condense and clarify
]
---
.pull-left[
## Yikes
<!-- here we have all the intermediate rmarkdowns I wrote when I was evaluating the project and conducting the analysis. -->
<!-- A lot of these were dead ends, and I don't need them taking up space in the future. -->
```{r, results='asis',echo=FALSE}
cat(htmltools::htmlPreserve("<PRE class='fansi fansi-output'><CODE>## <span style='color: #0000BB; font-weight: bold;'>../../MTS/truck-corridor-study/</span>
## ├── <span style='color: #00BB00;'>00_sample_corridors.Rmd</span>
## ├── <span style='color: #00BB00;'>01_conflate_corridors.Rmd</span>
## ├── <span style='color: #00BB00;'>02_calibrate_streetlight.Rmd</span>
## ├── <span style='color: #00BB00;'>03_review_streetlight.Rmd</span>
## ├── <span style='color: #00BB00;'>04_calibrate_fun_classes.Rmd</span>
## ├── 04_calibrate_fun_classes.html
## ├── <span style='color: #00BB00;'>05_compare_scores.Rmd</span>
## ├── 05_compare_scores.html
## ├── <span style='color: #00BB00;'>06_generate_deliverables.Rmd</span>
## ├── 06_generate_deliverables.html
## ├── <span style='color: #0000BB; font-weight: bold;'>06_generate_deliverables_files</span>
## ├── <span style='color: #00BB00;'>07_review_corridors.Rmd</span>
## ├── 07_review_corridors.html
## ├── <span style='color: #00BB00;'>08_corridor_additions.Rmd</span>
## ├── 08_corridor_additions.html
## ├── <span style='color: #0000BB; font-weight: bold;'>R</span>
## ├── <span style='color: #00BB00; font-weight: bold;'>README.Rmd</span>
## ├── <span style='color: #00BB00; font-weight: bold;'>README.md</span>
## ├── <span style='color: #0000BB; font-weight: bold;'>Tableau</span>
## ├── <span style='color: #0000BB; font-weight: bold;'>data</span>
## ├── <span style='color: #00BB00; font-weight: bold;'>initial_assessment.Rmd</span>
## ├── <span style='color: #00BB00; font-weight: bold;'>initial_assessment.html</span>
## ├── <span style='color: #00BB00; font-weight: bold;'>logo.png</span>
## ├── <span style='color: #0000BB; font-weight: bold;'>output</span>
## ├── <span style='color: #00BB00;'>potential_corridor_additions.R</span>
## ├── <span style='color: #00BB00; font-weight: bold;'>references.bib</span>
## ├── <span style='color: #0000BB; font-weight: bold;'>scrap</span>
## ├── <span style='color: #00BB00; font-weight: bold;'>style.css</span>
## └── <span style='color: #00BB00; font-weight: bold;'>truck-corridor-study.Rproj</span>
</CODE></PRE>"))
```
]
--
.pull-right[
## Yes
<!-- here, I have dramatically reduced the number of markdowns, down to just three core documents -->
<!-- A README, a Summary, and Methods -->
```{r, results='asis', echo=F}
cat(htmltools::htmlPreserve("<PRE class='fansi fansi-output'><CODE>## <span style='color: #0000BB; font-weight: bold;'>../../MTS/truck-corridor-study/</span>
## ├── <span style='color: #0000BB; font-weight: bold;'>R</span>
## ├── <span style='color: #00BB00; font-weight: bold;'>README.Rmd</span>
## ├── README.md
## ├── <span style='color: #00BB00;'>Summary.Rmd</span>
## ├── Summary.html
## ├── <span style='color: #0000BB; font-weight: bold;'>Summary_files</span>
## ├── <span style='color: #0000BB; font-weight: bold;'>Tableau</span>
## ├── <span style='color: #0000BB; font-weight: bold;'>data</span>
## ├── <span style='color: #0000BB; font-weight: bold;'>figures</span>
## ├── <span style='color: #00BB00; font-weight: bold;'>logo.png</span>
## ├── <span style='color: #00BB00;'>methods.Rmd</span>
## ├── methods.html
## ├── <span style='color: #0000BB; font-weight: bold;'>scrap</span>
## ├── <span style='color: #00BB00; font-weight: bold;'>style.css</span>
## └── <span style='color: #00BB00; font-weight: bold;'>truck-corridor-study.Rproj</span>
</CODE></PRE>
"))
```
]
---
## Not only **what**, but **why**
.panelset.sideways[
.panel[.panel-name[What]
<!-- this is a factual statement, but doesn't tell us anything about why we would 2019 over any other year -->
We used 2019 traffic data
]
.panel[.panel-name[Why]
<!-- here, we add some more context.-->
<!-- 2020 was a dumpster fire, aka, anomalous, year, so we went with 2019. -->
We used 2019 traffic data __because__ 2020 was anomalous
]
]
---
## Not only **what**, but **why**
.panelset.sideways[
.panel[.panel-name[What]
<!-- this is a factual statement, but doesn't tell us anything about why we would 2019 over any other year -->
We set the tier breaks at 15.4 and 26.2 points
]
.panel[.panel-name[Why]
<!-- here, we add some more context -->
We set the tier breaks at 15.4 and 26.2 points __because__ planners used their best judgement
]
]
---
## Aim for reproducibility
--
- Record package versions
--
- Try `{groundhog}`, `{pak}`, or `{renv}`
--
- Timestamp outputs
--
- With a year, month, **and** day!
---
class: center
<img src="assets/fig/mndot_4plus_single.png" alt="A black and white line art illustration of a large truck" style="transform: scaleX(-1); position: relative; top: 192px">
---
class: center
# I still don't care about trucks
<img src="assets/fig/mndot_4plus_single.png" alt="A black and white line art illustration of a large truck" style="transform: scaleX(-1);">
--
but everyone in my office knows about this documentation
--
and I'm very proud of my work.
---
.center[
<img src="assets/fig/mndot_4plus_single.png" alt="A black and white line art illustration of a large truck" style="transform: scaleX(-1);position: absolute;max-width: 19%;top: 336px;right: 500px;">
<img src="assets/fig/crab_with_fish.jpg" alt="A tiny crab holding a tiny fish" height="550px">
]
---
class: center, middle
# Thanks!
[lizroten.com/oddly](https://lizroten.com/oddly)
---
class: end-matter
#### Project packages
```{r pkg-refs, split=FALSE, echo=FALSE, warning=FALSE, message=FALSE, results='asis'}
knitr::write_bib(c(.packages()), "assets/packages.bib")
BibOptions(check.entries = TRUE,
bib.style = "authoryear",
sorting = "nty",
style = "markdown",
dashed = TRUE)
RefManageR::ReadBib("assets/packages.bib")
```
---
class: end-matter
#### Multimedia sources
<ul style="font-size: 15pt; text-align: left;">
- Mini tart icing https://gfycat.com/needygivingbufeo, as performed by [@jeanimbert](https://www.instagram.com/jeanimbert/?hl=en)
- Satisfying smoothie from [fenitas.nl](https://www.tiktok.com/@fenitas.nl/video/7093892979659738373)
- Tiny crab with tiny fish via [Reddit](https://www.reddit.com/r/oddlysatisfying/comments/vv6g4g/i_dont_know_why_but_this_image_is_so_pleasing/)
- Cranberry tart via [Reddit](https://www.reddit.com/r/oddlysatisfying/comments/tvdddr/this_cranberry_tart/?utm_term=1806211071&utm_medium=post_embed&utm_source=embed&utm_name=&utm_content=header)
- Truck illustration, MnDOT vehicle classification scheme. Available [here](https://www.dot.state.mn.us/traffic/data/reports/vc/Vehicle_Classification_Scheme.pdf)
- Rainbow illustration: Oren neu dag, [CC BY-SA 3.0](https://creativecommons.org/licenses/by-sa/3.0), via Wikimedia Commons
- Emoji images (Microsoft version) via [Emojipedia](https://emojipedia.org/)