forked from malcolmbarrett/causal_inference_notebook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.Rmd
20 lines (16 loc) · 906 Bytes
/
index.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
title: "Coding Causal Inference in R"
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
documentclass: book
bibliography: book.bib
link-citations: yes
csl: american-journal-of-epidemiology.csl
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE, warning = FALSE, message = FALSE)
library(knitr)
```
# About {-}
This notebook contains R code for part 2 of [*Causal Inference*](https://www.hsph.harvard.edu/miguel-hernan/causal-inference-book/) by Miguel Hernán and Jamie Robins [@hernan_causal_2019]. While R, SAS, Stata, and Python code are available on the website for *Causal Inference*, we focus on doing causal inference using the [tidyverse](https://www.tidyverse.org/) ecosystem of R packages, particularly ggplot2, dplyr, and broom.
[This notebook is hosted on GitHub](https://github.com/malcolmbarrett/causal_inference_book); please post any issues or suggestions there.