Skip to content

Commit 9d1820e

Browse files
committed
Remove deprecated functionality
1 parent 5ce30d2 commit 9d1820e

23 files changed

+638
-1397
lines changed

doc/spec/comparison.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Detailed estimator comparison
77
| Estimator | | Treatment | | Requires | | Delivers Conf. | | Linear | | Linear | | Mulitple | | Multiple | | High-Dimensional |
88
| | | Type | | Instrument | | Intervals | | Treatment | | Heterogeneity | | Outcomes | | Treatments | | Features |
99
+=============================================+==============+==============+==================+=============+=================+============+==============+====================+
10-
| :class:`.NonparametricTwoStageLeastSquares` | Any | Yes | | Yes | Assumed | Yes | Yes | |
10+
| :class:`.SieveTSLS` | Any | Yes | | Yes | Assumed | Yes | Yes | |
1111
+---------------------------------------------+--------------+--------------+------------------+-------------+-----------------+------------+--------------+--------------------+
1212
| :class:`.DeepIV` | Any | Yes | | | | Yes | Yes | |
1313
+---------------------------------------------+--------------+--------------+------------------+-------------+-----------------+------------+--------------+--------------------+

doc/spec/estimation/dr.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,10 +306,10 @@ Below we give a brief description of each of these classes:
306306
point = est.effect(X, T0=T0, T1=T1)
307307
lb, ub = est.effect_interval(X, T0=T0, T1=T1, alpha=0.05)
308308

309-
This method is related to the :class:`.DiscreteTreatmentOrthoForest` and you can check [Oprescu2019]_ for more technical details;
309+
This method is related to the :class:`.DROrthoForest` and you can check [Oprescu2019]_ for more technical details;
310310
the main difference being how the nuisance models are being constructed for the CATE estimation at some
311311
target :math:`X=x`. Check out :ref:`Forest Estimators User Guide <orthoforestuserguide>` for more information on forest based CATE models and other
312-
alternatives to the :class:`.ForestDML`.
312+
alternatives to the :class:`.CausalForestDML`.
313313

314314

315315
Usage FAQs

econml/__init__.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,22 +6,17 @@
66
'cate_interpreter',
77
'causal_forest',
88
'data',
9-
'deepiv',
109
'dml',
1110
'dr',
12-
'drlearner',
1311
'inference',
1412
'iv',
1513
'metalearners',
16-
'ortho_forest',
1714
'orf',
18-
'ortho_iv',
1915
'policy',
2016
'score',
2117
'solutions',
2218
'sklearn_extensions',
2319
'tree',
24-
'two_stage_least_squares',
2520
'utilities',
2621
'dowhy',
2722
'__version__']

econml/bootstrap.py

Lines changed: 0 additions & 17 deletions
This file was deleted.

econml/causal_forest.py

Lines changed: 0 additions & 101 deletions
This file was deleted.

econml/deepiv.py

Lines changed: 0 additions & 17 deletions
This file was deleted.

econml/dml/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,12 @@
3535
"""
3636

3737
from .dml import (DML, LinearDML, SparseLinearDML,
38-
KernelDML, NonParamDML, ForestDML)
38+
KernelDML, NonParamDML)
3939
from .causal_forest import CausalForestDML
4040

4141
__all__ = ["DML",
4242
"LinearDML",
4343
"SparseLinearDML",
4444
"KernelDML",
4545
"NonParamDML",
46-
"ForestDML",
4746
"CausalForestDML"]

0 commit comments

Comments
 (0)