Code
# Code here.Econometrics III Final Project
Jeerawan Jampit JJ
Old Dominion University
For a “how to” on writing introductions, see Keith Head’s Introduction Formula.
\[\text{Outcome}_{it} = \alpha + \delta D_{it} + X_{it}\beta + \epsilon_{it}\]
For inline equations, only use a single dollar sign like: \(\overline{Y} = \widehat{m}\overline{X} + \widehat{b}\).
Marc Bellemare has a helpful Conclusion Formula in response to Dr. Head’s.
---
title: "Title Here"
subtitle: "Econometrics III Final Project"
author: "Jeerawan Jampit JJ"
institute: "Old Dominion University"
format:
html:
theme: sandstone # Check here for more themes: https://quarto.org/docs/output-formats/html-themes.html
code-tools: true
code-fold: true
code-summary: "Code"
code-copy: hover
tbl-cap-location: top
fig-cap-location: bottom
editor: source
---
```{r setup, include=FALSE}
# DO NOT EDIT THIS
knitr::opts_chunk$set(fig.align = 'center')
knitr::opts_chunk$set(out.width = '90%')
knitr::opts_chunk$set(results = 'hold')
knitr::opts_chunk$set(fig.show = 'hold')
knitr::opts_chunk$set(error = TRUE)
knitr::opts_chunk$set(warning = FALSE)
knitr::opts_chunk$set(message = FALSE)
par(mar = c(4.1, 4.1, 1.1, 4.1))
hooks = knitr::knit_hooks$get()
hook_foldable = function(type) {
force(type)
function(x, options) {
res = hooks[[type]](x, options)
if (isFALSE(options[[paste0("fold.", type)]])) return(res)
paste0(
"<details open><summary>", gsub("^p", "P", gsub("^o", "O", type)), "</summary>\n\n",
res,
"\n\n</details>"
)
}
}
knitr::knit_hooks$set(
output = hook_foldable("output"),
plot = hook_foldable("plot")
)
```
## Introduction
For a "how to" on writing introductions, see [Keith Head's Introduction Formula](https://blogs.ubc.ca/khead/research/research-advice/formula).
## Literature Review
## Data
- Sources
- Description
- Summary
```{r}
# Code here.
```
## Empirical Strategy
$$\text{Outcome}_{it} = \alpha + \delta D_{it} + X_{it}\beta + \epsilon_{it}$$
For inline equations, only use a single dollar sign like: $\overline{Y} = \widehat{m}\overline{X} + \widehat{b}$.
## Results
```{r}
2 + 2
```
## Conclusion
Marc Bellemare has a helpful [Conclusion Formula](https://marcfbellemare.com/wordpress/12060) in response to Dr. Head's.
------------------------------------------------------------------------