Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/r-causal/causalworkshop
Install Workshop Materials for Causal Inference in R
https://github.com/r-causal/causalworkshop
Last synced: 3 months ago
JSON representation
Install Workshop Materials for Causal Inference in R
- Host: GitHub
- URL: https://github.com/r-causal/causalworkshop
- Owner: r-causal
- License: other
- Created: 2020-11-18T21:52:19.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-09-17T21:03:27.000Z (about 1 year ago)
- Last Synced: 2024-05-01T14:48:42.549Z (7 months ago)
- Language: R
- Size: 116 KB
- Stars: 18
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# Install the workshop materials for Causal Inference in R
## Installation
You can install causalworkshop from this repository with
``` r
install.packages("remotes")
remotes::install_github("malcolmbarrett/causalworkshop")
```Once you've installed the package, install the workshop with
``` r
causalworkshop::install_workshop()
```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:
``` r
causalworkshop::install_workshop("a/path/on/your/computer")
```