Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
a9ccbfb
adding knowledgebase on SCM
NathanielF Oct 23, 2025
6c620a8
tidying spell check
NathanielF Oct 23, 2025
1d79fee
improve binary modelling with BART
NathanielF Oct 23, 2025
72c8104
update with CATE RUN
NathanielF Oct 24, 2025
6da45fd
add visual of probabilistic causal inference
NathanielF Oct 24, 2025
b01c6a3
update cate and po section
NathanielF Oct 25, 2025
c180054
fixing typos
NathanielF Oct 25, 2025
e359210
add PO diagram
NathanielF Oct 25, 2025
8999d91
added empirical example
NathanielF Oct 26, 2025
e682822
fix typo
NathanielF Oct 26, 2025
762137b
add fish tank analogy
NathanielF Oct 27, 2025
4807bec
Merge branch 'main' into cate_example
NathanielF Oct 27, 2025
4531097
fix typo
NathanielF Oct 27, 2025
0628b91
tidying text
NathanielF Oct 28, 2025
65db0b4
further tidying
NathanielF Oct 28, 2025
9b27f64
added conclusion
NathanielF Oct 28, 2025
34e2fe3
More sign posting
NathanielF Oct 28, 2025
8787868
update references and write up
NathanielF Oct 29, 2025
d5016b7
add CTA to the end.
NathanielF Oct 29, 2025
5cc9366
add bayes factor plot
NathanielF Oct 30, 2025
79beb30
hide table inputs for param comparison
NathanielF Oct 30, 2025
d941b77
tightening the introduction
NathanielF Oct 30, 2025
cbaba03
tightening
NathanielF Oct 30, 2025
373f011
tidying
NathanielF Oct 31, 2025
22753d3
fix typo
NathanielF Oct 31, 2025
b406d53
small fix
NathanielF Oct 31, 2025
eb05301
tightening the conclusion with advice
NathanielF Nov 1, 2025
f620e25
tighten writing and add spike and slab model for nhefs
NathanielF Nov 7, 2025
62c27ed
tightening intro
NathanielF Nov 8, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added docs/source/_static/JOINT_DAG.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/source/_static/forwards_backwards.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/source/_static/potential_outcomes.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions docs/source/knowledgebase/glossary.rst
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ Glossary
Pretest-posttest design
A quasi-experimental design where the treatment effect is estimated by comparing an outcome measure before and after treatment.

Probabilistic Programming
Probabilistic programming is the practice of expressing statistical using general-purpose programming languages extended with constructs for random variables, probability distributions, and inference. Prominent examples are `PyMC` and `Stan`

Propensity scores
An estimate of the probability of adopting a treatment status. Used in re-weighting schemes to balance observational data.

Expand Down
1 change: 1 addition & 0 deletions docs/source/knowledgebase/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
glossary
design_notation
quasi_dags.ipynb
structural_causal_models.ipynb
causal_video_resources
causal_written_resources
:::
5,604 changes: 5,604 additions & 0 deletions docs/source/knowledgebase/structural_causal_models.ipynb

Large diffs are not rendered by default.

28 changes: 28 additions & 0 deletions docs/source/references.bib
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,34 @@ @article{richardson2009monetary
publisher={The University of Chicago Press}
}


@book{pearl2000causality,
title={Causality: Models, Reasoning, and Inference},
author={Pearl, J.},
isbn={9780521773621},
lccn={99042108},
url={https://books.google.ie/books?id=wnGU_TsW3BQC},
year={2000},
publisher={Cambridge University Press}
}

@book{angrist2014mastering,
title={Mastering 'Metrics: The path from cause to effect},
author={Angrist, Joshua D and Pischke, J{\"o}rn-Steffen},
year={2014},
publisher={Princeton University Press}
}

@book{angrist2009mostly,
title={Mostly Harmless Econometrics: An Empiricist's Companion},
author={Angrist, J.D. and Pischke, J.S.},
isbn={9780691120355},
lccn={2008036265},
url={https://books.google.ie/books?id=YSAzEAAAQBAJ},
year={2009},
publisher={Princeton University Press}
}

@article{carpenter2009effect,
title={The effect of alcohol consumption on mortality: regression discontinuity evidence from the minimum drinking age},
author={Carpenter, Christopher and Dobkin, Carlos},
Expand Down Expand Up @@ -59,6 +80,13 @@ @book{hansenEconometrics
publisher={Princeton}
}

@book{kaplan_bs_social_science,
title={Bayesian Statistics for the social sciences},
author={Kaplan, David},
year={2024},
publisher={Guilford Press}
}

@book{aronowFoundations,
author={Aronow, P and Miller, B},
title={Foundations of Agnostic Statistics},
Expand Down
1 change: 1 addition & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,5 @@ dependencies:
- statsmodels
- xarray>=v2022.11.0
- pymc-extras>=0.3.0
- pymc-bart
- python>=3.11