You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"참고 자료 추가해줘", "references 넣어줘", "참고문헌 업데이트" 등을 요청할 때 트리거.
6
+
한국어 노트북과 영어 노트북 모두 동일한 인용 형식 컨벤션을 적용.
7
+
---
8
+
9
+
# notebook-references
10
+
11
+
Causal Studio 노트북의 참고 자료 셀 작성 컨벤션.
12
+
13
+
## 형식
14
+
15
+
마지막 셀을 찾아 아래 형식으로 작성한다. NotebookEdit으로 셀을 수정하거나, 없으면 새 셀을 추가한다.
16
+
17
+
### 영어 노트북 (`_en.ipynb`)
18
+
19
+
```markdown
20
+
## References
21
+
22
+
This notebook draws on <주요 참고 자료 1–2개>.
23
+
24
+
-**Author, A., & Author, B. (Year)**. Title of paper or book. *Journal or Publisher*.
25
+
[URL](URL)
26
+
27
+
-**Author, C. (Year)**. *Book Title*. Online book.
28
+
[URL](URL)
29
+
30
+
-**Dataset Name — Description**.
31
+
[URL](URL)
32
+
```
33
+
34
+
### 한국어 노트북 (`_ko.ipynb`)
35
+
36
+
```markdown
37
+
## 참고 자료
38
+
39
+
이 노트북은 <주요 참고 자료 1–2개>를 주요 참고 자료로 작성되었습니다.
40
+
41
+
-**Author, A., & Author, B. (Year)**. Title of paper or book. *Journal or Publisher*.
42
+
[URL](URL)
43
+
44
+
-**Author, C. (Year)**. *Book Title*. Online book.
45
+
[URL](URL)
46
+
47
+
-**데이터셋 이름 — 설명**.
48
+
[URL](URL)
49
+
```
50
+
51
+
## 규칙
52
+
53
+
- 저자·연도·제목은 **굵게** (볼드)
54
+
- 저널명·책 제목은 *이탤릭*
55
+
- URL은 별도 줄에 두 칸 들여쓰기 후 `[URL](URL)` 형식
56
+
- 논문: `Author (Year). Title. *Journal*.`
57
+
- 책: `Author (Year). *Title*. Online book.` 또는 Publisher
58
+
- 데이터셋: `**이름 — 설명**.` (저자/연도 없이)
59
+
- 한국어 노트북에서도 저자명·제목은 영어 그대로 유지
60
+
61
+
## 기존 노트북 예시
62
+
63
+
FDC 노트북 (`frontdoor_criterion_ko.ipynb`) 참고:
64
+
```markdown
65
+
## 참고 자료
66
+
67
+
이 노트북은 Matheus Facure의 *Causal Inference for the Brave and True*와 Bellemare & Bloem (2024)을 주요 참고 자료로 작성되었습니다.
68
+
69
+
-**Bellemare, M. F., & Bloem, J. R. (2024)**. The Paper of How: Estimating Treatment Effects Using the Front-Door Criterion. *Oxford Bulletin of Economics and Statistics*.
70
+
[https://...](https://...)
71
+
72
+
-**Facure, M. (2022)**. *Causal Inference for the Brave and True*. Online book.
Copy file name to clipboardExpand all lines: book/fdc/frontdoor_criterion_en.ipynb
+1-3Lines changed: 1 addition & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -143,7 +143,7 @@
143
143
"id": "300ceab1",
144
144
"metadata": {},
145
145
"source": [
146
-
"## Data Construction\n",
146
+
"## Data Setup\n",
147
147
"\n",
148
148
"We apply the methodology of Bellemare & Bloem (2024) to the 2023 New York City HVFHS dataset. We work with a randomly drawn 5M-row sample from the full dataset (230 million rows). On the first run, the sample is downloaded from HuggingFace and cached locally."
149
149
]
@@ -1688,8 +1688,6 @@
1688
1688
"- A conditionally exogenous mediator M exists between X and Y (e.g., an algorithmically determined match), and\n",
1689
1689
"- Variation in M arises effectively exogenously.\n",
1690
1690
"\n",
1691
-
"Applicable domains include the tech industry (recommendation algorithms, content allocation), labor economics (training program take-up rates), and health economics (medical testing errors).\n",
1692
-
"\n",
1693
1691
"### Methodological Limitations\n",
1694
1692
"\n",
1695
1693
"- **FDC Assumption 1** (all X→Y effects pass through M): This cannot be directly tested. We cannot rule out the possibility that merely knowing a ride is shared influences tipping psychology directly.\n",
Copy file name to clipboardExpand all lines: book/why_causal_inference/why_causal_inference_en.ipynb
+28-4Lines changed: 28 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,31 @@
18
18
"<small><em>Written by Haechang Cho · <a href=\"https://github.com/Funbucket\">GitHub</a> · <a href=\"https://www.linkedin.com/in/hae-chang-cho/\">LinkedIn</a></em></small>"
0 commit comments