-
Notifications
You must be signed in to change notification settings - Fork 9
/
12-class.Rmd
107 lines (72 loc) Β· 1.7 KB
/
12-class.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
---
title: "Class 12: IV II and RDD II"
author: "Andrew Heiss"
date: "`r Sys.Date()`"
output:
xaringan::moon_reader:
lib_dir: "libs"
chakra: "libs/remark-latest.min.js"
css: ["default", "css/ath-slides.css", "css/ath-inferno-fonts.css", "css/animate.css"]
seal: false
anchor_sections: false
nature:
highlightStyle: github
highlightLines: true
countIncrementalSlides: false
ratio: "16:9"
navigation:
scroll: false
editor_options:
chunk_output_type: console
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(warning = FALSE, message = FALSE,
fig.retina = 3, fig.align = "center")
```
```{r packages-data, include=FALSE}
library(tidyverse)
library(kableExtra)
library(scales)
```
```{r xaringanExtra, echo=FALSE}
xaringanExtra::use_xaringan_extra(c("tile_view"))
```
class: center middle main-title section-title-3
# In-person<br>session 12
.class-info[
**April 6, 2023**
.light[PMAP 8521: Program evaluation<br>
Andrew Young School of Policy Studies
]
]
---
name: outline
class: title title-inv-8
# Plan for today
--
.box-1.medium[Exam 2]
--
.box-3.medium[Synthetic data fun times!]
---
layout: false
name: faqs
class: center middle section-title section-title-1 animated fadeIn
# Exam 2
---
layout: false
name: synthetic-data
class: center middle section-title section-title-3 animated fadeIn
# Synthetic data<br>fun times!
---
class: title title-3
# Basic process
--
.box-inv-3.medium[1: Draw a DAG]
--
.box-inv-3.medium[2: Create standalone exogenous columns]
--
.box-inv-3.medium[3: Connect endogenous columns]
--
.box-inv-3.medium[4: Polish columns]
--
.box-3.large.sp-before-half[Iterate. Iterate so so much.]