|
1 | 1 |
|
2 | 2 | <!-- README.md is generated from README.Rmd. Please edit that file -->
|
3 | 3 |
|
4 |
| -## user2020\! Causal Inference in R Workshop |
| 4 | +## Causal Inference in R Workshop |
5 | 5 |
|
6 | 6 | ### Slides
|
7 | 7 |
|
8 |
| - - [00 Intro](https://user2020.lucymcgowan.com/00-intro.html) |
| 8 | + - [00 |
| 9 | + Intro](https://causal-inference-r-workshop.netlify.app/00-intro.html) |
9 | 10 | - [01 Whole
|
10 |
| - Game](https://user2020.lucymcgowan.com/01-causal_modeling_whole_game.html) |
11 |
| - - [02 Causal Diagrams](https://user2020.lucymcgowan.com/02-dags.html) |
| 11 | + Game](https://causal-inference-r-workshop.netlify.app/01-causal_modeling_whole_game.html) |
| 12 | + - [02 Causal |
| 13 | + Diagrams](https://causal-inference-r-workshop.netlify.app/02-dags.html) |
12 | 14 | - [03 Introduction to Propensity
|
13 |
| - Scores](https://user2020.lucymcgowan.com/03-pscores.html) |
| 15 | + Scores](https://causal-inference-r-workshop.netlify.app/03-pscores.html) |
14 | 16 | - [04 Using Propensity
|
15 |
| - Scores](https://user2020.lucymcgowan.com/04-pscore-weighting.html) |
| 17 | + Scores](https://causal-inference-r-workshop.netlify.app/04-pscore-weighting.html) |
16 | 18 | - [05 Checking Propensity
|
17 |
| - Scores](https://user2020.lucymcgowan.com/05-pscore-diagnostics.html) |
| 19 | + Scores](https://causal-inference-r-workshop.netlify.app/05-pscore-diagnostics.html) |
18 | 20 | - [06 Fitting the outcome
|
19 |
| - model](https://user2020.lucymcgowan.com/06-outcome-model.html) |
| 21 | + model](https://causal-inference-r-workshop.netlify.app/06-outcome-model.html) |
20 | 22 |
|
21 | 23 | ### Installing materials locally
|
22 | 24 |
|
23 | 25 | We will be using RStudio Cloud for the workshop, but if you would like
|
24 | 26 | to install the required packages and course materials, we have an R
|
25 | 27 | package called
|
26 |
| -{[useRcausal2020](https://github.com/malcolmbarrett/useRcausal2020)} to |
| 28 | +{[causalworkshop](https://github.com/malcolmbarrett/causalworkshop)} to |
27 | 29 | help you do that\! You can install
|
28 |
| -{[useRcausal2020](https://github.com/malcolmbarrett/useRcausal2020)} |
| 30 | +{[causalworkshop](https://github.com/malcolmbarrett/causalworkshop)} |
29 | 31 | from GitHub with:
|
30 | 32 |
|
31 | 33 | ``` r
|
32 | 34 | install.packages("remotes")
|
33 |
| -remotes::install_github("malcolmbarrett/useRcausal2020") |
| 35 | +remotes::install_github("malcolmbarrett/causalworkshop") |
34 | 36 | ```
|
35 | 37 |
|
36 | 38 | Once you’ve installed the package, install the workshop with
|
37 | 39 |
|
38 | 40 | ``` r
|
39 |
| -useRcausal2020::install_workshop("path/to/your/computer") |
| 41 | +causalworkshop::install_workshop() |
40 | 42 | ```
|
41 | 43 |
|
42 |
| -Replace “path/to/your/computer” with where on your computer you want the |
43 |
| -workshop installed. |
| 44 | +By default, this package downloads the materials to a conspicuous place |
| 45 | +like your Desktop. You can also tell `install_workshop()` exactly where |
| 46 | +to put the materials: |
| 47 | + |
| 48 | +``` r |
| 49 | +causalworkshop::install_workshop("a/path/on/your/computer") |
| 50 | +``` |
0 commit comments