Skip to content

Commit

Permalink
Merge branch 'main' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
dscolby authored Dec 17, 2024
2 parents d22f84e + 1897aba commit 550fded
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 10 deletions.
5 changes: 2 additions & 3 deletions docs/src/guide/doublemachinelearning.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,8 @@ an estimated zero probability of treatment, which implies the positivity assumpt
satisfied.

!!! tip
One can also specify the maxium number of possible treatments to consider for the causal
consistency assumption and the minimum and maximum probabilities of treatment for the
positivity assumption with the num\_treatments, min, and max keyword arguments.
One can also specify the minimum and maximum probabilities of treatment for the
positivity assumption with the `num_treatments`, `min`, and `max` keyword arguments.

!!! danger
Obtaining correct estimates is dependent on meeting the assumptions for double machine
Expand Down
3 changes: 1 addition & 2 deletions docs/src/guide/gcomputation.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ and binary, continuous, time to event, and count outcome variables.
neurons to use during estimation. These options are specified with the following keyword
arguments: quantity\_of\_interest, activation, temporal, num\_machines, num\_feats,
sample\_size, and num\_neurons.

```julia
# Create some data with a binary treatment
X, T, Y = rand(1000, 5), [rand()<0.4 for i in 1:1000], rand(1000)
Expand Down Expand Up @@ -91,7 +90,7 @@ satisfied.

!!! tip
One can also specify the minimum and maximum probabilities of treatment for the
positivity assumption with the num\_treatments, min, and max keyword arguments.
positivity assumption with the `num_treatments`, `min`, and `max` keyword arguments.

!!! danger
Obtaining correct estimates is dependent on meeting the assumptions for G-computation.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/guide/its.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ tests in one line of code.
!!! tip
One can also specify the number of simulated confounders to generate to test the sensitivity
of the model to confounding and the minimum and maximum proportion of data to use in the
Wald supremum test by including the n, low, and high keyword arguments.
Wald supremum test by including the `n`, `low`, and `high` keyword arguments.

!!! danger
Obtaining correct estimates is dependent on meeting the assumptions for interrupted time
Expand Down
5 changes: 2 additions & 3 deletions docs/src/guide/metalearners.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,8 @@ an estimated zero probability of treatment, which implies the positivity assumpt
satisfied.

!!! tip
One can also specify the maxium number of possible treatments to consider for the causal
consistency assumption and the minimum and maximum probabilities of treatment for the
positivity assumption with the num\_treatments, min, and max keyword arguments.
One can also specify the minimum and maximum probabilities of treatment for the
positivity assumption with the `num_treatments`, `min`, and `max` keyword arguments.

!!! danger
Obtaining correct estimates is dependent on meeting the assumptions for interrupted time
Expand Down
3 changes: 2 additions & 1 deletion docs/src/release_notes.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Release Notes
These release notes adhere to the [keep a changelog](https://keepachangelog.com/en/1.0.0/) format. Below is a list of changes since CausalELM was first released.

## Version [0.8.0](https://github.com/dscolby/CausalELM.jl/releases/tag/v0.8.0) - 2024-10-31
## Version [0.8.0](https://github.com/dscolby/CausalELM.jl/releases/tag/v0.8.0) - 2024-12-16
### Added
* Implemented randomization inference-based confidence intervals [#78](https://github.com/dscolby/CausalELM.jl/issues/78)
* Added marginal effects to model summaries [#78](https://github.com/dscolby/CausalELM.jl/issues/78)
Expand All @@ -12,6 +12,7 @@ These release notes adhere to the [keep a changelog](https://keepachangelog.com/
* Fixed the randomization inference index selection procedure for interrupted time series estimators
* Inlined certain methods to slightly improve performance [#76](https://github.com/dscolby/CausalELM.jl/issues/76)
* CausalELM models now support any data structure that implements the Tables.jl API, not just DataFrames
* Removed unnecessary include and using statements

## Version [v0.7.0](https://github.com/dscolby/CausalELM.jl/releases/tag/v0.7.0) - 2024-06-22
### Added
Expand Down

0 comments on commit 550fded

Please sign in to comment.