Skip to content

Commit 550fded

Browse files
authored
Merge branch 'main' into development
2 parents d22f84e + 1897aba commit 550fded

File tree

5 files changed

+8
-10
lines changed

5 files changed

+8
-10
lines changed

docs/src/guide/doublemachinelearning.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,8 @@ an estimated zero probability of treatment, which implies the positivity assumpt
9191
satisfied.
9292

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

9897
!!! danger
9998
Obtaining correct estimates is dependent on meeting the assumptions for double machine

docs/src/guide/gcomputation.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ and binary, continuous, time to event, and count outcome variables.
3131
neurons to use during estimation. These options are specified with the following keyword
3232
arguments: quantity\_of\_interest, activation, temporal, num\_machines, num\_feats,
3333
sample\_size, and num\_neurons.
34-
3534
```julia
3635
# Create some data with a binary treatment
3736
X, T, Y = rand(1000, 5), [rand()<0.4 for i in 1:1000], rand(1000)
@@ -91,7 +90,7 @@ satisfied.
9190

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

9695
!!! danger
9796
Obtaining correct estimates is dependent on meeting the assumptions for G-computation.

docs/src/guide/its.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ tests in one line of code.
9797
!!! tip
9898
One can also specify the number of simulated confounders to generate to test the sensitivity
9999
of the model to confounding and the minimum and maximum proportion of data to use in the
100-
Wald supremum test by including the n, low, and high keyword arguments.
100+
Wald supremum test by including the `n`, `low`, and `high` keyword arguments.
101101

102102
!!! danger
103103
Obtaining correct estimates is dependent on meeting the assumptions for interrupted time

docs/src/guide/metalearners.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,8 @@ an estimated zero probability of treatment, which implies the positivity assumpt
119119
satisfied.
120120

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

126125
!!! danger
127126
Obtaining correct estimates is dependent on meeting the assumptions for interrupted time

docs/src/release_notes.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Release Notes
22
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.
33

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

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

0 commit comments

Comments
 (0)