Skip to content

Commit 8d8b351

Browse files
update readme
1 parent f84b07f commit 8d8b351

File tree

2 files changed

+37
-26
lines changed

2 files changed

+37
-26
lines changed

README.Rmd

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,30 +11,34 @@ knitr::opts_chunk$set(
1111
)
1212
```
1313

14-
## user2020! Causal Inference in R Workshop
14+
## Causal Inference in R Workshop
1515

1616
### Slides
17-
* [00 Intro](https://user2020.lucymcgowan.com/00-intro.html)
18-
* [01 Whole Game](https://user2020.lucymcgowan.com/01-causal_modeling_whole_game.html)
19-
* [02 Causal Diagrams](https://user2020.lucymcgowan.com/02-dags.html)
20-
* [03 Introduction to Propensity Scores](https://user2020.lucymcgowan.com/03-pscores.html)
21-
* [04 Using Propensity Scores](https://user2020.lucymcgowan.com/04-pscore-weighting.html)
22-
* [05 Checking Propensity Scores](https://user2020.lucymcgowan.com/05-pscore-diagnostics.html)
23-
* [06 Fitting the outcome model](https://user2020.lucymcgowan.com/06-outcome-model.html)
17+
* [00 Intro](https://causal-inference-r-workshop.netlify.app/00-intro.html)
18+
* [01 Whole Game](https://causal-inference-r-workshop.netlify.app/01-causal_modeling_whole_game.html)
19+
* [02 Causal Diagrams](https://causal-inference-r-workshop.netlify.app/02-dags.html)
20+
* [03 Introduction to Propensity Scores](https://causal-inference-r-workshop.netlify.app/03-pscores.html)
21+
* [04 Using Propensity Scores](https://causal-inference-r-workshop.netlify.app/04-pscore-weighting.html)
22+
* [05 Checking Propensity Scores](https://causal-inference-r-workshop.netlify.app/05-pscore-diagnostics.html)
23+
* [06 Fitting the outcome model](https://causal-inference-r-workshop.netlify.app/06-outcome-model.html)
2424

2525
### Installing materials locally
2626

27-
We will be using RStudio Cloud for the workshop, but if you would like to install the required packages and course materials, we have an R package called {[useRcausal2020](https://github.com/malcolmbarrett/useRcausal2020)} to help you do that! You can install {[useRcausal2020](https://github.com/malcolmbarrett/useRcausal2020)} from GitHub with:
27+
We will be using RStudio Cloud for the workshop, but if you would like to install the required packages and course materials, we have an R package called {[causalworkshop](https://github.com/malcolmbarrett/causalworkshop)} to help you do that! You can install {[causalworkshop](https://github.com/malcolmbarrett/causalworkshop)} from GitHub with:
2828

2929
``` r
3030
install.packages("remotes")
31-
remotes::install_github("malcolmbarrett/useRcausal2020")
31+
remotes::install_github("malcolmbarrett/causalworkshop")
3232
```
3333

3434
Once you've installed the package, install the workshop with
3535

3636
``` r
37-
useRcausal2020::install_workshop("path/to/your/computer")
37+
causalworkshop::install_workshop()
3838
```
3939

40-
Replace "path/to/your/computer" with where on your computer you want the workshop installed.
40+
By default, this package downloads the materials to a conspicuous place like your Desktop. You can also tell `install_workshop()` exactly where to put the materials:
41+
42+
``` r
43+
causalworkshop::install_workshop("a/path/on/your/computer")
44+
```

README.md

Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,50 @@
11

22
<!-- README.md is generated from README.Rmd. Please edit that file -->
33

4-
## user2020\! Causal Inference in R Workshop
4+
## Causal Inference in R Workshop
55

66
### Slides
77

8-
- [00 Intro](https://user2020.lucymcgowan.com/00-intro.html)
8+
- [00
9+
Intro](https://causal-inference-r-workshop.netlify.app/00-intro.html)
910
- [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)
1214
- [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)
1416
- [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)
1618
- [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)
1820
- [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)
2022

2123
### Installing materials locally
2224

2325
We will be using RStudio Cloud for the workshop, but if you would like
2426
to install the required packages and course materials, we have an R
2527
package called
26-
{[useRcausal2020](https://github.com/malcolmbarrett/useRcausal2020)} to
28+
{[causalworkshop](https://github.com/malcolmbarrett/causalworkshop)} to
2729
help you do that\! You can install
28-
{[useRcausal2020](https://github.com/malcolmbarrett/useRcausal2020)}
30+
{[causalworkshop](https://github.com/malcolmbarrett/causalworkshop)}
2931
from GitHub with:
3032

3133
``` r
3234
install.packages("remotes")
33-
remotes::install_github("malcolmbarrett/useRcausal2020")
35+
remotes::install_github("malcolmbarrett/causalworkshop")
3436
```
3537

3638
Once you’ve installed the package, install the workshop with
3739

3840
``` r
39-
useRcausal2020::install_workshop("path/to/your/computer")
41+
causalworkshop::install_workshop()
4042
```
4143

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

Comments
 (0)