-
Notifications
You must be signed in to change notification settings - Fork 2
/
c8-mle.Rmd
56 lines (43 loc) · 1.58 KB
/
c8-mle.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
---
title: "Optimization & MLE"
output:
html_document:
number_sections: false
toc: no
params:
class: "8-mle"
---
```{r child = "_knitr_setup.Rmd"}
```
```{r, echo=FALSE}
root <- paste0("class/", params$class, "/")
path_slides <- file.path("class", params$class, "index.html")
path_pdf <- paste0(root, params$class, ".pdf")
path_notes <- paste0(root, params$class, ".zip")
```
<div class = "row">
<div class = "col-md-5">
**KEYBOARD SHORTCUTS FOR SLIDES:**
- Use <kbd>←</kbd> and <kbd>→</kbd> to navigate through the slides.
- Use <kbd>f</kbd> to toggle full screen.
- Use <kbd>o</kbd> to view an overview of all slides.
- Use <kbd>h</kbd> to see a list of other shortcuts.
</div>
<div class = "row">
<div class = "col-md-3">
<div class="class-buttons">
**SLIDES**
<a href=`r path_slides` class="btn-slides" target="_blank"><i class="fas fa-external-link-alt"></i> View in new window</a>
<a href=`r path_pdf` class="btn-slides"><i class="fas fa-file-pdf"></i> Download as PDF</a>
</div></div>
<div class = "col-md-3">
<div class="class-buttons">
**CLASS PRACTICE**
<a href=`r path_notes` class="btn-notes"><i class="fas fa-download"></i> Download zip file</a>
<a href="https://github.com/emse-madd-gwu/logitr-cars/archive/refs/heads/main.zip" class="btn-notes"><i class="fas fa-download"></i> Download logitr-cars</a>
<a href="https://github.com/jhelvy/formr4conjoint/archive/refs/heads/master.zip" class="btn-notes"><i class="fas fa-download"></i> Download formr4conjoint</a>
</div></div>
</div>
```{r lexi-demo, echo=FALSE}
xaringanExtra::embed_xaringan(url = path_slides, ratio = "16:9")
```