Skip to main content

Build status PyPI version PyPI wheel Supported Python versions

econml-logo EconML: A Python Package for ML-Based Heterogeneous Treatment Effects Estimation

EconML is a Python package for estimating heterogeneous treatment effects from observational data via machine learning. This package was designed and built as part of the ALICE project at Microsoft Research with the goal to combine state-of-the-art machine learning techniques with econometrics to bring automation to complex causal inference problems. The promise of EconML:

  • Implement recent techniques in the literature at the intersection of econometrics and machine learning
  • Maintain flexibility in modeling the effect heterogeneity (via techniques such as random forests, boosting, lasso and neural nets), while preserving the causal interpretation of the learned model and often offering valid confidence intervals
  • Use a unified API
  • Build on standard Python packages for Machine Learning and Data Analysis

One of the biggest promises of machine learning is to automate decision making in a multitude of domains. At the core of many data-driven personalized decision scenarios is the estimation of heterogeneous treatment effects: what is the causal effect of an intervention on an outcome of interest for a sample with a particular set of features? In a nutshell, this toolkit is designed to measure the causal effect of some treatment variable(s) T on an outcome variable Y, controlling for a set of features X, W and how does that effect vary as a function of X. The methods implemented are applicable even with observational (non-experimental or historical) datasets. For the estimation results to have a causal interpretation, some methods assume no unobserved confounders (i.e. there is no unobserved variable not included in X, W that simultaneously has an effect on both T and Y), while others assume access to an instrument Z (i.e. an observed variable Z that has an effect on the treatment T but no direct effect on the outcome Y). Most methods provide confidence intervals and inference results.

For detailed information about the package, consult the documentation at https://www.pywhy.org/EconML/.

For information on use cases and background material on causal inference and heterogeneous treatment effects see our webpage at https://www.microsoft.com/en-us/research/project/econml/

Table of Contents

News

If you'd like to contribute to this project, see the Help Wanted section below.

July 31, 2026: Release v0.17.0, see release notes here

Previous releases

July 10, 2025: Release v0.16.0, see release notes here

July 3, 2024: Release v0.15.1, see release notes here

February 12, 2024: Release v0.15.0, see release notes here

November 11, 2023: Release v0.15.0b1, see release notes here

May 19, 2023: Release v0.14.1, see release notes here

November 16, 2022: Release v0.14.0, see release notes here

June 17, 2022: Release v0.13.1, see release notes here

January 31, 2022: Release v0.13.0, see release notes here

August 13, 2021: Release v0.12.0, see release notes here

August 5, 2021: Release v0.12.0b6, see release notes here

August 3, 2021: Release v0.12.0b5, see release notes here

July 9, 2021: Release v0.12.0b4, see release notes here

June 25, 2021: Release v0.12.0b3, see release notes here

June 18, 2021: Release v0.12.0b2, see release notes here

June 7, 2021: Release v0.12.0b1, see release notes here

May 18, 2021: Release v0.11.1, see release notes here

May 8, 2021: Release v0.11.0, see release notes here

March 22, 2021: Release v0.10.0, see release notes here

March 11, 2021: Release v0.9.2, see release notes here

March 3, 2021: Release v0.9.1, see release notes here

February 20, 2021: Release v0.9.0, see release notes here

January 20, 2021: Release v0.9.0b1, see release notes here

November 20, 2020: Release v0.8.1, see release notes here

November 18, 2020: Release v0.8.0, see release notes here

September 4, 2020: Release v0.8.0b1, see release notes here

March 6, 2020: Release v0.7.0, see release notes here

February 18, 2020: Release v0.7.0b1, see release notes here

January 10, 2020: Release v0.6.1, see release notes here

December 6, 2019: Release v0.6, see release notes here

November 21, 2019: Release v0.5, see release notes here.

June 3, 2019: Release v0.4, see release notes here.

May 3, 2019: Release v0.3, see release notes here.

April 10, 2019: Release v0.2, see release notes here.

March 6, 2019: Release v0.1, welcome to have a try and provide feedback.

Getting Started

Installation

Install the latest release from PyPI:

pip install econml

To install from source, see For Developers section below.

Usage Examples

Estimation Methods

Double Machine Learning (aka RLearner) (click to expand)
  • Linear final stage
from econml.dml import LinearDML
from sklearn.linear_model import LassoCV
from econml.inference import BootstrapInference

est = LinearDML(model_y=LassoCV(), model_t=LassoCV())
### Estimate with OLS confidence intervals
est.fit(Y, T, X=X, W=W) # W -> high-dimensional confounders, X -> features
treatment_effects = est.effect(X_test)
lb, ub = est.effect_interval(X_test, alpha=0.05) # OLS confidence intervals

### Estimate with bootstrap confidence intervals
est.fit(Y, T, X=X, W=W, inference='bootstrap')  # with default bootstrap parameters
est.fit(Y, T, X=X, W=W, inference=BootstrapInference(n_bootstrap_samples=100))  # or customized
lb, ub = est.effect_interval(X_test, alpha=0.05) # Bootstrap confidence intervals
  • Sparse linear final stage
from econml.dml import SparseLinearDML
from sklearn.linear_model import LassoCV

est = SparseLinearDML(model_y=LassoCV(), model_t=LassoCV())
est.fit(Y, T, X=X, W=W) # X -> high dimensional features
treatment_effects = est.effect(X_test)
lb, ub = est.effect_interval(X_test, alpha=0.05) # Confidence intervals via debiased lasso
  • Generic Machine Learning last stage
from econml.dml import NonParamDML
from sklearn.ensemble import RandomForestRegressor, RandomForestClassifier

est = NonParamDML(model_y=RandomForestRegressor(),
                  model_t=RandomForestClassifier(),
                  model_final=RandomForestRegressor(),
                  discrete_treatment=True)
est.fit(Y, T, X=X, W=W) 
treatment_effects = est.effect(X_test)
Dynamic Double Machine Learning (click to expand)
from econml.panel.dml import DynamicDML
# Use defaults
est = DynamicDML()
# Or specify hyperparameters
est = DynamicDML(model_y=LassoCV(cv=3), 
                 model_t=LassoCV(cv=3), 
                 cv=3)
est.fit(Y, T, X=X, W=None, groups=groups, inference="auto")
# Effects
treatment_effects = est.effect(X_test)
# Confidence intervals
lb, ub = est.effect_interval(X_test, alpha=0.05)
Causal Forests (click to expand)
from econml.dml import CausalForestDML
from sklearn.linear_model import LassoCV
# Use defaults
est = CausalForestDML()
# Or specify hyperparameters
est = CausalForestDML(criterion='het', n_estimators=500,       
                      min_samples_leaf=10, 
                      max_depth=10, max_samples=0.5,
                      discrete_treatment=False,
                      model_t=LassoCV(), model_y=LassoCV())
est.fit(Y, T, X=X, W=W)
treatment_effects = est.effect(X_test)
# Confidence intervals via Bootstrap-of-Little-Bags for forests
lb, ub = est.effect_interval(X_test, alpha=0.05)
Orthogonal Random Forests (click to expand)
from econml.orf import DMLOrthoForest, DROrthoForest
from econml.sklearn_extensions.linear_model import WeightedLasso, WeightedLassoCV
# Use defaults
est = DMLOrthoForest()
est = DROrthoForest()
# Or specify hyperparameters
est = DMLOrthoForest(n_trees=500, min_leaf_size=10,
                     max_depth=10, subsample_ratio=0.7,
                     lambda_reg=0.01,
                     discrete_treatment=False,
                     model_T=WeightedLasso(alpha=0.01), model_Y=WeightedLasso(alpha=0.01),
                     model_T_final=WeightedLassoCV(cv=3), model_Y_final=WeightedLassoCV(cv=3))
est.fit(Y, T, X=X, W=W)
treatment_effects = est.effect(X_test)
# Confidence intervals via Bootstrap-of-Little-Bags for forests
lb, ub = est.effect_interval(X_test, alpha=0.05)
Meta-Learners (click to expand)
  • XLearner
from econml.metalearners import XLearner
from sklearn.ensemble import GradientBoostingClassifier, GradientBoostingRegressor

est = XLearner(models=GradientBoostingRegressor(),
              propensity_model=GradientBoostingClassifier(),
              cate_models=GradientBoostingRegressor())
est.fit(Y, T, X=np.hstack([X, W]))
treatment_effects = est.effect(np.hstack([X_test, W_test]))

# Fit with bootstrap confidence interval construction enabled
est.fit(Y, T, X=np.hstack([X, W]), inference='bootstrap')
treatment_effects = est.effect(np.hstack([X_test, W_test]))
lb, ub = est.effect_interval(np.hstack([X_test, W_test]), alpha=0.05) # Bootstrap CIs
  • SLearner
from econml.metalearners import SLearner
from sklearn.ensemble import GradientBoostingRegressor

est = SLearner(overall_model=GradientBoostingRegressor())
est.fit(Y, T, X=np.hstack([X, W]))
treatment_effects = est.effect(np.hstack([X_test, W_test]))
  • TLearner
from econml.metalearners import TLearner
from sklearn.ensemble import GradientBoostingRegressor

est = TLearner(models=GradientBoostingRegressor())
est.fit(Y, T, X=np.hstack([X, W]))
treatment_effects = est.effect(np.hstack([X_test, W_test]))
Doubly Robust Learners (click to expand)
  • Linear final stage
from econml.dr import LinearDRLearner
from sklearn.ensemble import GradientBoostingRegressor, GradientBoostingClassifier

est = LinearDRLearner(model_propensity=GradientBoostingClassifier(),
                      model_regression=GradientBoostingRegressor())
est.fit(Y, T, X=X, W=W)
treatment_effects = est.effect(X_test)
lb, ub = est.effect_interval(X_test, alpha=0.05)
  • Sparse linear final stage
from econml.dr import SparseLinearDRLearner
from sklearn.ensemble import GradientBoostingRegressor, GradientBoostingClassifier

est = SparseLinearDRLearner(model_propensity=GradientBoostingClassifier(),
                            model_regression=GradientBoostingRegressor())
est.fit(Y, T, X=X, W=W)
treatment_effects = est.effect(X_test)
lb, ub = est.effect_interval(X_test, alpha=0.05)
  • Nonparametric final stage
from econml.dr import ForestDRLearner
from sklearn.ensemble import GradientBoostingRegressor, GradientBoostingClassifier

est = ForestDRLearner(model_propensity=GradientBoostingClassifier(),
                      model_regression=GradientBoostingRegressor())
est.fit(Y, T, X=X, W=W) 
treatment_effects = est.effect(X_test)
lb, ub = est.effect_interval(X_test, alpha=0.05)
Double Machine Learning with Instrumental Variables (click to expand)
  • Orthogonal instrumental variable learner
from econml.iv.dml import OrthoIV

est = OrthoIV(projection=False, 
              discrete_treatment=True, 
              discrete_instrument=True)
est.fit(Y, T, Z=Z, X=X, W=W)
treatment_effects = est.effect(X_test)
lb, ub = est.effect_interval(X_test, alpha=0.05) # OLS confidence intervals
  • Nonparametric double machine learning with instrumental variable
from econml.iv.dml import NonParamDMLIV

est = NonParamDMLIV(discrete_treatment=True, 
                    discrete_instrument=True,
                    model_final=RandomForestRegressor())
est.fit(Y, T, Z=Z, X=X, W=W) # no analytical confidence interval available
treatment_effects = est.effect(X_test)
Doubly Robust Machine Learning with Instrumental Variables (click to expand)
  • Linear final stage
from econml.iv.dr import LinearDRIV

est = LinearDRIV(discrete_instrument=True, discrete_treatment=True)
est.fit(Y, T, Z=Z, X=X, W=W)
treatment_effects = est.effect(X_test)
lb, ub = est.effect_interval(X_test, alpha=0.05) # OLS confidence intervals
  • Sparse linear final stage
from econml.iv.dr import SparseLinearDRIV

est = SparseLinearDRIV(discrete_instrument=True, discrete_treatment=True)
est.fit(Y, T, Z=Z, X=X, W=W)
treatment_effects = est.effect(X_test)
lb, ub = est.effect_interval(X_test, alpha=0.05) # Debiased lasso confidence intervals
  • Nonparametric final stage
from econml.iv.dr import ForestDRIV

est = ForestDRIV(discrete_instrument=True, discrete_treatment=True)
est.fit(Y, T, Z=Z, X=X, W=W)
treatment_effects = est.effect(X_test)
# Confidence intervals via Bootstrap-of-Little-Bags for forests
lb, ub = est.effect_interval(X_test, alpha=0.05) 
  • Linear intent-to-treat (discrete instrument, discrete treatment)
from econml.iv.dr import LinearIntentToTreatDRIV
from sklearn.ensemble import GradientBoostingRegressor, GradientBoostingClassifier

est = LinearIntentToTreatDRIV(model_y_xw=GradientBoostingRegressor(),
                              model_t_xwz=GradientBoostingClassifier(),
                              flexible_model_effect=GradientBoostingRegressor())
est.fit(Y, T, Z=Z, X=X, W=W)
treatment_effects = est.effect(X_test)
lb, ub = est.effect_interval(X_test, alpha=0.05) # OLS confidence intervals

See the References section for more details.

Interpretability

Tree Interpreter of the CATE model (click to expand)
from econml.cate_interpreter import SingleTreeCateInterpreter
intrp = SingleTreeCateInterpreter(include_model_uncertainty=True, max_depth=2, min_samples_leaf=10)
# We interpret the CATE model's behavior based on the features used for heterogeneity
intrp.interpret(est, X)
# Plot the tree
plt.figure(figsize=(25, 5))
intrp.plot(feature_names=['A', 'B', 'C', 'D'], fontsize=12)
plt.show()

image

Policy Interpreter of the CATE model (click to expand)
from econml.cate_interpreter import SingleTreePolicyInterpreter
# We find a tree-based treatment policy based on the CATE model
intrp = SingleTreePolicyInterpreter(risk_level=0.05, max_depth=2, min_samples_leaf=1,min_impurity_decrease=.001)
intrp.interpret(est, X, sample_treatment_costs=0.2)
# Plot the tree
plt.figure(figsize=(25, 5))
intrp.plot(feature_names=['A', 'B', 'C', 'D'], fontsize=12)
plt.show()

image

SHAP values for the CATE model (click to expand)
import shap
from econml.dml import CausalForestDML
est = CausalForestDML()
est.fit(Y, T, X=X, W=W)
shap_values = est.shap_values(X)
shap.summary_plot(shap_values['Y0']['T0'])

Causal Model Selection and Cross-Validation

Causal model selection with the `RScorer` (click to expand)
from econml.score import RScorer

# split data in train-validation
X_train, X_val, T_train, T_val, Y_train, Y_val = train_test_split(X, T, y, test_size=.4)

# define list of CATE estimators to select among
reg = lambda: RandomForestRegressor(min_samples_leaf=20)
clf = lambda: RandomForestClassifier(min_samples_leaf=20)
models = [('ldml', LinearDML(model_y=reg(), model_t=clf(), discrete_treatment=True,
                             cv=3)),
          ('xlearner', XLearner(models=reg(), cate_models=reg(), propensity_model=clf())),
          ('dalearner', DomainAdaptationLearner(models=reg(), final_models=reg(), propensity_model=clf())),
          ('slearner', SLearner(overall_model=reg())),
          ('drlearner', DRLearner(model_propensity=clf(), model_regression=reg(),
                                  model_final=reg(), cv=3)),
          ('rlearner', NonParamDML(model_y=reg(), model_t=clf(), model_final=reg(),
                                   discrete_treatment=True, cv=3)),
          ('dml3dlasso', DML(model_y=reg(), model_t=clf(),
                             model_final=LassoCV(cv=3, fit_intercept=False),
                             discrete_treatment=True,
                             featurizer=PolynomialFeatures(degree=3),
                             cv=3))
]

# fit cate models on train data
models = [(name, mdl.fit(Y_train, T_train, X=X_train)) for name, mdl in models]

# score cate models on validation data
scorer = RScorer(model_y=reg(), model_t=clf(),
                 discrete_treatment=True, cv=3, mc_iters=2, mc_agg='median')
scorer.fit(Y_val, T_val, X=X_val)
rscore = [scorer.score(mdl) for _, mdl in models]
# select the best model
mdl, _ = scorer.best_model([mdl for _, mdl in models])
# create weighted ensemble model based on score performance
mdl, _ = scorer.ensemble([mdl for _, mdl in models])
First Stage Model Selection (click to expand)

EconML's cross-fitting estimators provide built-in functionality for first-stage model selection. This support can work with existing sklearn model selection classes such as LassoCV or GridSearchCV, or you can pass a list of models to choose the best from among them when cross-fitting.

from econml.dml import LinearDML
from sklearn import clone
from sklearn.ensemble import RandomForestRegressor
from sklearn.linear_model import LassoCV
from sklearn.model_selection import GridSearchCV

cv_model = GridSearchCV(
              estimator=RandomForestRegressor(),
              param_grid={
                  "max_depth": [3, None],
                  "n_estimators": (10, 30, 50, 100, 200),
                  "max_features": (2, 4, 6),
              },
              cv=5,
           )

est = LinearDML(model_y=cv_model, # use sklearn's grid search to select the best Y model 
                model_t=[RandomForestRegressor(), LassoCV()]) # use built-in model selection to choose between forest and linear models for T model

Inference

Whenever inference is enabled, then one can get a more structure InferenceResults object with more elaborate inference information, such as p-values and z-statistics. When the CATE model is linear and parametric, then a summary() method is also enabled. For instance:

from econml.dml import LinearDML
# Use defaults
est = LinearDML()
est.fit(Y, T, X=X, W=W)
# Get the effect inference summary, which includes the standard error, z test score, p value, and confidence interval given each sample X[i]
est.effect_inference(X_test).summary_frame(alpha=0.05, value=0, decimals=3)
# Get the population summary for the entire sample X
est.effect_inference(X_test).population_summary(alpha=0.1, value=0, decimals=3, tol=0.001)
#  Get the parameter inference summary for the final model
est.summary()
Example Output (click to expand)
# Get the effect inference summary, which includes the standard error, z test score, p value, and confidence interval given each sample X[i]
est.effect_inference(X_test).summary_frame(alpha=0.05, value=0, decimals=3)

image

# Get the population summary for the entire sample X
est.effect_inference(X_test).population_summary(alpha=0.1, value=0, decimals=3, tol=0.001)

image

#  Get the parameter inference summary for the final model
est.summary()

image

Policy Learning

You can also perform direct policy learning from observational data, using the doubly robust method for offline policy learning. These methods directly predict a recommended treatment, without internally fitting an explicit model of the conditional average treatment effect.

Doubly Robust Policy Learning (click to expand)
from econml.policy import DRPolicyTree, DRPolicyForest
from sklearn.ensemble import RandomForestRegressor

# fit a single binary decision tree policy
policy = DRPolicyTree(max_depth=1, min_impurity_decrease=0.01, honest=True)
policy.fit(y, T, X=X, W=W)
# predict the recommended treatment
recommended_T = policy.predict(X)
# plot the binary decision tree
plt.figure(figsize=(10,5))
policy.plot()
# get feature importances
importances = policy.feature_importances_

# fit a binary decision forest
policy = DRPolicyForest(max_depth=1, min_impurity_decrease=0.01, honest=True)
policy.fit(y, T, X=X, W=W)
# predict the recommended treatment
recommended_T = policy.predict(X)
# plot the first tree in the ensemble
plt.figure(figsize=(10,5))
policy.plot(0)
# get feature importances
importances = policy.feature_importances_

image

To see more complex examples, go to the notebooks section of the repository. For a more detailed description of the treatment effect estimation algorithms, see the EconML documentation.

For Developers

You can get started by cloning this repository. We use setuptools for building and distributing our package. We rely on some recent features of setuptools, so make sure to upgrade to a recent version with pip install setuptools --upgrade. Then from your local copy of the repository you can run pip install -e . to get started (but depending on what you're doing you might want to install with extras instead, like pip install -e .[plt] if you want to use matplotlib integration, or you can use pip install -e .[all] to include all extras).

Pre-commit hooks

We use the pre-commit framework to enforce code style and run checks before every commit. To install the pre-commit hooks, make sure you have pre-commit installed (pip install pre-commit) and then run pre-commit install in the root of the repository. This will install the hooks and run them automatically before every commit. If you want to run the hooks manually, you can run pre-commit run --all-files.

Finding issues to help with

If you're looking to contribute to the project, we have a number of issues tagged with the up for grabs and help wanted labels. "Up for grabs" issues are ones that we think that people without a lot of experience in our codebase may be able to help with, while "Help wanted" issues are valuable improvements to the library that our team currently does not have time to prioritize where we would greatly appreciate community-initiated PRs, but which might be more involved.

Running the tests

This project uses pytest to run tests for continuous integration. It is also possible to use pytest to run tests locally, but this isn't recommended because it will take an extremely long time and some tests are specific to certain environments or scenarios that have additional dependencies. However, if you'd like to do this anyway, to run all tests locally after installing the package you can use pip install pytest pytest-xdist pytest-cov coverage[toml] (as well as pip install jupyter jupyter-client nbconvert nbformat seaborn xgboost tqdm for the dependencies to run all of our notebooks as tests) followed by python -m pytest.

Because running all tests can be very time-consuming, we recommend running only the relevant subset of tests when developing locally. The easiest way to do this is to rely on pytest's compatibility with unittest, so you can just run python -m unittest econml.tests.test_module to run all tests in a given module, or python -m unittest econml.tests.test_module.TestClass to run all tests in a given class. You can also run python -m unittest econml.tests.test_module.TestClass.test_method to run a single test method.

Some of our tests exercise plotting code that imports matplotlib. Our CI sets MPLBACKEND=Agg so that matplotlib selects a non-interactive backend; if you run these tests locally (particularly on Windows, where matplotlib's default Tk backend can fail to initialize), you may want to do the same, e.g. $env:MPLBACKEND = "Agg" in PowerShell or export MPLBACKEND=Agg in bash before invoking pytest/unittest.

Working with scikit-learn version differences

EconML deliberately supports a wide range of scikit-learn versions (the exact bounds live in the scikit-learn dependency constraint in pyproject.toml, kept there as the single source of truth). Many users have non-trivial environments where pinning the latest sklearn would conflict with unrelated dependencies, so keeping the supported range broad is a real benefit to the user base. The cost is that EconML wraps a number of sklearn estimators (in econml.sklearn_extensions) and uses a handful of sklearn internals, and those code paths sometimes have to branch on sklearn version. Two pieces of internal infrastructure exist to keep that bounded and consistent:

  • econml/_sklearn_compat.py — the single home for sklearn version flags (SKLEARN_GE_17, SKLEARN_GE_18, ...) and any compatibility shims (e.g. one_hot_encoder, ensure_finite_kwargs). When you need to branch on a sklearn version, add a flag here rather than re-implementing parse(sklearn.__version__) >= parse("X.Y") at the call site. The module docstring contains the canonical recipe for writing a wrapper that handles a renamed/removed constructor argument across versions (including the easy-to-miss step of reassigning only the specific deprecated arg the parent silently overwrites, and — if the parent removed the arg entirely — adding a matching get_params override so the removed name doesn't leak back into sklearn's internals).

  • econml/tests/_sklearn_compat_helpers.py — two test helpers that wrapper PRs should use:

    • assert_sklearn_roundtrip(cls, **kwargs) constructs the estimator and asserts that get_params reports back exactly the kwargs the user passed, and that clone preserves them. This is the assertion that catches the common bug where a wrapper drops an arg from super().__init__() and the parent silently writes a "deprecated" sentinel onto self.
    • no_sklearn_future_warnings() is a context manager that promotes sklearn-originated FutureWarning/DeprecationWarning to errors, so a wrapper's happy-path fit/predict tests fail loudly when an upstream deprecation starts firing.

The kinds of sklearn changes EconML has had to absorb so far, and the standard way each is handled:

Kind of change Example sklearn change How EconML handles it Codebase example
Renamed constructor kwarg OneHotEncoder(sparse=...)OneHotEncoder(sparse_output=...) (1.2) A small wrapper in _sklearn_compat.py that splats the right kwarg name based on a version flag one_hot_encoder() as of 927ac261 (the 1.2 branch was removed once the floor reached 1.6)
Renamed function kwarg force_all_finite=ensure_all_finite= on check_array/check_X_y (1.6; old name removed in 1.8) A helper that returns the correct kwargs dict to splat into the call ensure_finite_kwargs() as of 927ac261 (the 1.6 branch was removed once the floor reached 1.6)
Symbol moved to a different (often private) submodule _get_column_indices moved from sklearn.utils to sklearn.utils._indexing (1.5); _print_elapsed_time moved to sklearn.utils._user_interface (1.5) A single conditional import in _sklearn_compat.py re-exports the symbol under a stable name; call sites import from there get_column_indices / print_elapsed_time as of 927ac261 (the 1.5 branches were removed once the floor reached 1.6)
Deprecated/removed constructor arg with sentinel default n_alphas on LassoCV becomes a "deprecated" sentinel in 1.7+ Branch the wrapper's super().__init__() on SKLEARN_GE_*. Do NOT reassign self.<deprecated_arg> back to the user's value — sklearn's parent fit may check that attribute against the sentinel and warn if it was overwritten (this was the bug behind PR #1031's regression; fixed narrowly in #1042 then again more comprehensively as part of the sklearn-compat overhaul). Instead, emit your own wrapper-level FutureWarning when the user explicitly passes the deprecated arg (nudging them to the modern name). Test with assert_sklearn_roundtrip(cls, **kwargs) for the modern name only. WeightedLassoCV.__init__ + _warn_n_alphas_deprecated in econml/sklearn_extensions/linear_model.py
Wrapper __init__ still accepts an arg the parent removed n_alphas fully removed from LassoCV/lasso_path in 1.9 (but our wrapper still exposes it as a legacy kwarg) After parent init, use hasattr: preserve the parent's deprecation sentinel when present, or restore that same sentinel after the parent removes the attribute so sklearn's BaseEstimator.get_params() can inspect our static wrapper signature. Add BOTH a get_params and paired set_params override: get_params drops the removed arg before sklearn internal calls can consume it, while set_params translates the legacy name so GridSearchCV / Pipeline parameter grids keep working. WeightedLassoCV.__init__ / get_params / set_params in econml/sklearn_extensions/linear_model.py (pattern originally suggested in PR #1046)
Private-helper signature change verbose argument removed from _fit_and_predict (1.4); _preprocess_data started returning sqrt_weights (1.8) Branch the call site on the version flag with an inline comment citing the upstream change econml/sklearn_extensions/model_selection.py (1.4 branch around _fit_and_predict); econml/sklearn_extensions/linear_model.py (1.8 branches around _preprocess_data)
Behavior change with no API rename _preprocess_data started auto-rescaling by sqrt(sample_weight) (1.8); wrappers must pass rescale_with_sw=False to keep historical behavior Branch the kwargs passed at the call site on the version flag; inline comment explains the change econml/sklearn_extensions/linear_model.py (the _preprocess_data calls)

If you're adding or modifying a sklearn_extensions wrapper, read the recipe in econml/_sklearn_compat.py's module docstring and use both helpers above when adding tests. When a new sklearn FutureWarning/DeprecationWarning first surfaces in CI, treat the removal version it names (e.g. "will be removed in 1.11") as a migration deadline and open a follow-up issue against that version, rather than silencing the warning and forgetting it — that's how #1032's hard break on sklearn 1.9 got past the earlier deprecation cycle.

(This section is a placeholder; the broader contributor guidance will be split out into a dedicated CONTRIBUTING.md in a future change.)

Generating the documentation

This project's documentation is generated via Sphinx. Note that we use graphviz's dot application to produce some of the images in our documentation, so you should make sure that dot is installed and in your path.

To generate a local copy of the documentation from a clone of this repository, just run python setup.py build_sphinx -W -E -a, which will build the documentation and place it under the build/sphinx/html path.

The reStructuredText files that make up the documentation are stored in the docs directory; module documentation is automatically generated by the Sphinx build process.

Release process

We use GitHub Actions to build and publish the package and documentation. To create a new release, an admin should perform the following steps:

  1. Update the version number in econml/_version.py and add a mention of the new version in the news section of this file and commit the changes.
  2. Manually run the publish_package.yml workflow to build and publish the package to PyPI.
  3. Manually run the publish_docs.yml workflow to build and publish the documentation.
  4. Under https://github.com/py-why/EconML/releases, create a new release with a corresponding tag, and update the release notes.

Blogs and Publications

Citation

If you use EconML in your research, please cite us as follows:

Keith Battocchi, Eleanor Dillon, Maggie Hei, Greg Lewis, Paul Oka, Miruna Oprescu, Vasilis Syrgkanis. EconML: A Python Package for ML-Based Heterogeneous Treatment Effects Estimation. https://github.com/py-why/EconML, 2019. Version 0.x.

BibTex:

@misc{econml,
  author={Keith Battocchi, Eleanor Dillon, Maggie Hei, Greg Lewis, Paul Oka, Miruna Oprescu, Vasilis Syrgkanis},
  title={{EconML}: {A Python Package for ML-Based Heterogeneous Treatment Effects Estimation}},
  howpublished={https://github.com/py-why/EconML},
  note={Version 0.x},
  year={2019}
}

Contributing and Feedback

This project welcomes contributions and suggestions. We use the DCO bot to enforce a Developer Certificate of Origin which requires users to sign-off on their commits. This is a simple way to certify that you wrote or otherwise have the right to submit the code you are contributing to the project. Git provides a -s command line option to include this automatically when you commit via git commit.

If you forget to sign one of your commits, the DCO bot will provide specific instructions along with the failed check; alternatively you can use git commit --amend -s to add the sign-off to your last commit if you forgot it or git rebase --signoff to sign all of the commits in the branch, after which you can force push the changes to your branch with git push --force-with-lease.

This project has adopted the PyWhy Code of Conduct.

Community

pywhy-logo

EconML is a part of PyWhy, an organization with a mission to build an open-source ecosystem for causal machine learning.

PyWhy also has a Discord, which serves as a space for like-minded casual machine learning researchers and practitioners of all experience levels to come together to ask and answer questions, discuss new features, and share ideas.

We invite you to join us at regular office hours and community calls in the Discord.

References

Athey, Susan, and Stefan Wager. Policy learning with observational data. Econometrica 89.1, 133-161, 2021.

X Nie, S Wager. Quasi-Oracle Estimation of Heterogeneous Treatment Effects. Biometrika 108.2, 299-319, 2021.

V. Syrgkanis, V. Lei, M. Oprescu, M. Hei, K. Battocchi, G. Lewis. Machine Learning Estimation of Heterogeneous Treatment Effects with Instruments. Proceedings of the 33rd Conference on Neural Information Processing Systems (NeurIPS), 2019. (Spotlight Presentation)

D. Foster, V. Syrgkanis. Orthogonal Statistical Learning. Proceedings of the 32nd Annual Conference on Learning Theory (COLT), 2019. (Best Paper Award)

M. Oprescu, V. Syrgkanis and Z. S. Wu. Orthogonal Random Forest for Causal Inference. Proceedings of the 36th International Conference on Machine Learning (ICML), 2019.

S. Künzel, J. Sekhon, J. Bickel and B. Yu. Metalearners for estimating heterogeneous treatment effects using machine learning. Proceedings of the national academy of sciences, 116(10), 4156-4165, 2019.

S. Athey, J. Tibshirani, S. Wager. Generalized random forests. Annals of Statistics, 47, no. 2, 1148--1178, 2019.

V. Chernozhukov, D. Nekipelov, V. Semenova, V. Syrgkanis. Plug-in Regularized Estimation of High-Dimensional Parameters in Nonlinear Semiparametric Models. Arxiv preprint arxiv:1806.04823, 2018.

S. Wager, S. Athey. Estimation and Inference of Heterogeneous Treatment Effects using Random Forests. Journal of the American Statistical Association, 113:523, 1228-1242, 2018.

Jason Hartford, Greg Lewis, Kevin Leyton-Brown, and Matt Taddy. Deep IV: A flexible approach for counterfactual prediction. Proceedings of the 34th International Conference on Machine Learning, ICML'17, 2017.

V. Chernozhukov, D. Chetverikov, M. Demirer, E. Duflo, C. Hansen, and a. W. Newey. Double Machine Learning for Treatment and Causal Parameters. ArXiv preprint arXiv:1608.00060, 2016.

Dudik, M., Erhan, D., Langford, J., & Li, L. Doubly robust policy evaluation and optimization. Statistical Science, 29(4), 485-511, 2014.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

econml-0.17.0.tar.gz (1.8 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

econml-0.17.0-cp314-cp314t-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

econml-0.17.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

econml-0.17.0-cp314-cp314t-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

econml-0.17.0-cp314-cp314-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows x86-64

econml-0.17.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

econml-0.17.0-cp314-cp314-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

econml-0.17.0-cp313-cp313-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.13Windows x86-64

econml-0.17.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

econml-0.17.0-cp313-cp313-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

econml-0.17.0-cp312-cp312-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.12Windows x86-64

econml-0.17.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

econml-0.17.0-cp312-cp312-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

econml-0.17.0-cp311-cp311-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.11Windows x86-64

econml-0.17.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

econml-0.17.0-cp311-cp311-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

econml-0.17.0-cp310-cp310-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.10Windows x86-64

econml-0.17.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

econml-0.17.0-cp310-cp310-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

econml-0.17.0-cp39-cp39-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.9Windows x86-64

econml-0.17.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

econml-0.17.0-cp39-cp39-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file econml-0.17.0.tar.gz.

File metadata

  • Download URL: econml-0.17.0.tar.gz
  • Upload date:
  • Size: 1.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for econml-0.17.0.tar.gz
Algorithm Hash digest
SHA256 b637b6166d290203775954c3af58c45a728a932315df3c334a625ab94e6e0b30
MD5 910cabfae6fd39d7704c21234f8ace00
BLAKE2b-256 2e43fa3f0bd1f0ee613f81f4442bab98dc39f486a28865d300b35124506c1ed7

See more details on using hashes here.

Provenance

The following attestation bundles were made for econml-0.17.0.tar.gz:

Publisher: publish-package.yml on py-why/EconML

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file econml-0.17.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: econml-0.17.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for econml-0.17.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a613a3b9eeb33a9bd860032a5352a3ba327b271d609793b076e277d279937e51
MD5 da86650fc81ff38da806cdf2f29845f2
BLAKE2b-256 5989f499ab47cbb57465ce3ec8dd7b260200a113f21ab1f36e85f991f1b968be

See more details on using hashes here.

Provenance

The following attestation bundles were made for econml-0.17.0-cp314-cp314t-win_amd64.whl:

Publisher: publish-package.yml on py-why/EconML

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file econml-0.17.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for econml-0.17.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 34539aa17ed4fec2f35c4f7314925ca670f32a64a8546a59a53a7b9b53856265
MD5 af2009185830c01590cc31e0dd8aa327
BLAKE2b-256 9c8e4edd4a2d8b458ddeceed37a712414d3d0d2c336544f1195672509d78f505

See more details on using hashes here.

Provenance

The following attestation bundles were made for econml-0.17.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-package.yml on py-why/EconML

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file econml-0.17.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for econml-0.17.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 110ca11fa8f0fecba514b87747db03b2e4a385e68ca1ffc83e6f27f743824a4e
MD5 26980747f0f2b916c238e5fa1d6f2442
BLAKE2b-256 d596fcde612e5430ad9694992dfa92c9fd49d5689dd127cfe56057a62c17dfa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for econml-0.17.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: publish-package.yml on py-why/EconML

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file econml-0.17.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: econml-0.17.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for econml-0.17.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5e2b5eb5cd19fa628805e4a6064e74784116cd2e30ee69532461320ea63f0ecf
MD5 13a037fc870b8f50412bbc10b8ffbfa4
BLAKE2b-256 ddbd317e584748378aac4a7b481512425be618c5586ecfffc1791780e64b10e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for econml-0.17.0-cp314-cp314-win_amd64.whl:

Publisher: publish-package.yml on py-why/EconML

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file econml-0.17.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for econml-0.17.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4c135f2f58b089acb2c44bc51432956dfcdf5a0d642ec6f364ef009dcb97ef51
MD5 9b13a2738586be58f8b1dc09a20b6465
BLAKE2b-256 6142de30058d2f53e22d5c94d598da2789d3278a52d20a607166a9f6915f7adc

See more details on using hashes here.

Provenance

The following attestation bundles were made for econml-0.17.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-package.yml on py-why/EconML

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file econml-0.17.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for econml-0.17.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8582c059b735867de0ee39359f8f7ac54d8451ffde3bf5ae9cfaf26b86d64894
MD5 21f2661a24cd0147eb849ac4de0b99bd
BLAKE2b-256 61e90094621a70b246bc0a26956c7a7539786442540b4ac9caf66d209cd5fc04

See more details on using hashes here.

Provenance

The following attestation bundles were made for econml-0.17.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: publish-package.yml on py-why/EconML

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file econml-0.17.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: econml-0.17.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for econml-0.17.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6033b2d9cb30263e23c1e47f72395d4b4f575966237674f7afd13385d18c470d
MD5 790673e325630def87880bae8896eea9
BLAKE2b-256 74cf9934eca38d76585c00c369726befaca5eab39aa8d7999706850b116ed4d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for econml-0.17.0-cp313-cp313-win_amd64.whl:

Publisher: publish-package.yml on py-why/EconML

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file econml-0.17.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for econml-0.17.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c66ef0164fa807025a445e60ab9144cd0e1d0112bf2b232da9a5fd35d1b75045
MD5 a139e0804e3770f7125eaf9aaa41d19f
BLAKE2b-256 aa39de811f79760a463f69a98c017f29b6f41b619233b8cfce1ab887a4ddc8e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for econml-0.17.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-package.yml on py-why/EconML

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file econml-0.17.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for econml-0.17.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 129b04ef32cfe84314ee1a8935c84254c2ab26a530f87485e7f68c487afa9a7c
MD5 e7c631e20a5fe140c08b0c26910a0423
BLAKE2b-256 b5fb7a4bc0e3a6817752e0059c9b33ef57bbfcab34598cdfc032177e31f554ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for econml-0.17.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish-package.yml on py-why/EconML

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file econml-0.17.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: econml-0.17.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for econml-0.17.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 56f6e8965ffe242675f95a1011d01b474cb8f556a25f7bb736c8e723f9831f37
MD5 38d9ea67ba91ea5ed1fee5e00302c543
BLAKE2b-256 1943c942addc558c3a8a2df368240ba8ef801962577ad7983cf1b1860d4242ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for econml-0.17.0-cp312-cp312-win_amd64.whl:

Publisher: publish-package.yml on py-why/EconML

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file econml-0.17.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for econml-0.17.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5b59d410d7dc9255ecd2e2fae0ed7206b6cf496439e24dd60907fbf844549bfc
MD5 cf7b0eb232ff6ca330d18cc5b03ded88
BLAKE2b-256 80b470fffb4c0bdb5cf78c1f9a2655e92248106e6d1a00b196a4696b48b1e845

See more details on using hashes here.

Provenance

The following attestation bundles were made for econml-0.17.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-package.yml on py-why/EconML

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file econml-0.17.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for econml-0.17.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f68503da12025377b89552da6c8876634c738122a9d2bf33975abe80e1578f1
MD5 c76b1ca7cd926416920581b7f3642b0b
BLAKE2b-256 71da0916160c5e799b3088a824cad7b6d424569ec75c890143313792e0cdf4f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for econml-0.17.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish-package.yml on py-why/EconML

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file econml-0.17.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: econml-0.17.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for econml-0.17.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 488ecb1b1ed78c7f3d31c6b1d8d2ec1dddda9eb67d16a6062d208ff397dfd6a9
MD5 6148b271cf062ad99950fb8698e31742
BLAKE2b-256 db0fa5321090502d340e2a38f50810a9922a191203a64e0a2579347facf01250

See more details on using hashes here.

Provenance

The following attestation bundles were made for econml-0.17.0-cp311-cp311-win_amd64.whl:

Publisher: publish-package.yml on py-why/EconML

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file econml-0.17.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for econml-0.17.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c375b09ea690f7f14d757e9cf0575cc0d2876083de5549d8fb49790690fc198f
MD5 1fa817245462685f0171f7624fa7cfb3
BLAKE2b-256 a6ad26f60c086d70be70be27548c0ac935ceeb02ed8f92dfff4353ef2182f72b

See more details on using hashes here.

Provenance

The following attestation bundles were made for econml-0.17.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-package.yml on py-why/EconML

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file econml-0.17.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for econml-0.17.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7746aab5d9300303feadfa62d4b5eb242a12d8ef5d275e4a52aeff9b61e5303b
MD5 7b8386402b17834decd8efc8c1cdd5e0
BLAKE2b-256 936977f69b04ac90245060e39c8b3eeb43a40c5a1e03ec48ee5a2ef6b48a386e

See more details on using hashes here.

Provenance

The following attestation bundles were made for econml-0.17.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish-package.yml on py-why/EconML

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file econml-0.17.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: econml-0.17.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for econml-0.17.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ee1cfe781c001401e1ec7cb1a9248f616d10605e648263bdc0226e38de7e9bd4
MD5 0af6848c8a96211ab24ba4cfa02bd6e7
BLAKE2b-256 767a64b270fc4752c0338789b1110b6db4c16957412534d1f5a31af49572568f

See more details on using hashes here.

Provenance

The following attestation bundles were made for econml-0.17.0-cp310-cp310-win_amd64.whl:

Publisher: publish-package.yml on py-why/EconML

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file econml-0.17.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for econml-0.17.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 df25999a21c4e0bbcf7feb74ba14b4a97421949896bec0bb0136b05cb9ab7b45
MD5 776068ecbcde09a4d89a184b9be2e55b
BLAKE2b-256 04d1eb35b8517b037542c43311b1fad8ae538d7e1678ac19f61b0b1da42b9a6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for econml-0.17.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-package.yml on py-why/EconML

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file econml-0.17.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for econml-0.17.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7dacaa9a1e7490ed30dd1e51e7577a1bde66697edebd3637995a65b203312b01
MD5 986d4f14ba728d8d91d3178861c5cbc8
BLAKE2b-256 03b3e40ab0bcd2fa074e44624c2a0e7b3f000dab3d17deaa20c253ecded7b3a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for econml-0.17.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish-package.yml on py-why/EconML

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file econml-0.17.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: econml-0.17.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for econml-0.17.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fd3dc5ea5fb05c45854c3aec772c02725fe8ca6eb4ad9b4aa134dc700722864b
MD5 e91a1f3a71dfd2e6da5bc7659cc0e323
BLAKE2b-256 bf15008d0669f93173cdef75ccae8347daf217a2ce7174b13d8ca4c1872da19a

See more details on using hashes here.

Provenance

The following attestation bundles were made for econml-0.17.0-cp39-cp39-win_amd64.whl:

Publisher: publish-package.yml on py-why/EconML

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file econml-0.17.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for econml-0.17.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 122ae9614ca52b7f80a6b2911400addeb4f64c01635e2e0feadaa7da8bc42bbe
MD5 e0b0ff12d221e4762730873ef1778c3c
BLAKE2b-256 b18c4303a8d6c99c6fb487140f3b354cca8261638fa7246919bac0cc87ae7ade

See more details on using hashes here.

Provenance

The following attestation bundles were made for econml-0.17.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: publish-package.yml on py-why/EconML

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file econml-0.17.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for econml-0.17.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e3deb446423092118d4acc7b2ef24ec82619adc41ebbe2f5360fc6123081d49
MD5 7c08c67e1cd29b8de5b03570155aca1f
BLAKE2b-256 ca0ebe12bce325937640036710a67afc9c4da1448326f3d1ea3bb66e70d193e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for econml-0.17.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: publish-package.yml on py-why/EconML

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page