gitextract_ejq2bful/ ├── .Rbuildignore ├── .github/ │ └── ISSUE_TEMPLATE/ │ └── custom.md ├── .gitignore ├── 01-R.Rmd ├── 02-SummaryStats.Rmd ├── 03-linear-reg.Rmd ├── 04-MultipleReg.Rmd ├── 05-Categorial-Vars.Rmd ├── 06-StdErrors.Rmd ├── 07-Causality.Rmd ├── 08-STAR.Rmd ├── 09-RDD.Rmd ├── 10-IV.Rmd ├── 11-IV2.Rmd ├── 12-panel.Rmd ├── 13-discrete.Rmd ├── 14-references.Rmd ├── DESCRIPTION ├── GA-tracker.html ├── LICENSE ├── NAMESPACE ├── R/ │ └── utils.R ├── README.md ├── ScPoEconometrics.Rproj ├── _archive/ │ └── chapters/ │ └── 03-linear-reg.Rmd ├── _bookdown.yml ├── _build.sh ├── _deploy.sh ├── _local_deploy.sh ├── _output.yml ├── _tex/ │ ├── ci.tex │ ├── onesided.tex │ ├── testing.lyx │ ├── two-sided-beta.tex │ └── twosided-mean.tex ├── _to_be_done/ │ ├── 08-TBD.Rmd │ ├── 09-R-advanced.Rmd │ ├── 11-projects.Rmd │ └── notes.R ├── book.bib ├── images/ │ └── trade.html ├── index.Rmd ├── inst/ │ ├── CITATION │ └── datasets/ │ ├── airline-safety.csv │ ├── corr50.csv │ ├── demo_gind.xls │ ├── example-data.csv │ ├── grade5.dta │ └── simple_arrows.RData ├── packages.bib ├── preamble.tex ├── previous_travis.yml ├── style.css ├── teachers/ │ ├── ForTeachers.md │ ├── app-timeline.md │ ├── session1-ouline.md │ ├── tasks_ch1.Rmd │ └── tasks_ch2.Rmd └── toc.css