├── .github
├── ISSUE_TEMPLATE
│ ├── api_docu.yml
│ ├── bug_report.yml
│ ├── config.yml
│ └── feature_request.yml
├── PULL_REQUEST_TEMPLATE.md
└── workflows
│ ├── codeql.yml
│ ├── deploy_pkg.yml
│ └── pytest.yml
├── .gitignore
├── .pre-commit-config.yaml
├── CITATION.cff
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
├── MANIFEST.in
├── README.md
├── codecov.yml
├── doc
├── .gitignore
├── Makefile
├── _templates
│ └── class.rst
├── api
│ └── api.rst
├── conf.py
├── index.rst
├── logo.png
├── make.bat
└── oop.svg
├── doubleml
├── __init__.py
├── data
│ ├── __init__.py
│ ├── base_data.py
│ ├── did_data.py
│ ├── panel_data.py
│ ├── rdd_data.py
│ ├── ssm_data.py
│ ├── tests
│ │ ├── __init__.py
│ │ ├── conftest.py
│ │ ├── test_cluster_data.py
│ │ ├── test_dml_data.py
│ │ ├── test_panel_data.py
│ │ └── test_panel_data_exceptions.py
│ └── utils
│ │ ├── panel_data_utils.py
│ │ └── tests
│ │ └── test_panel_data_utils.py
├── datasets
│ ├── __init__.py
│ ├── fetch_401K.py
│ └── fetch_bonus.py
├── did
│ ├── __init__.py
│ ├── datasets
│ │ ├── __init__.py
│ │ ├── dgp_did_CS2021.py
│ │ ├── dgp_did_SZ2020.py
│ │ └── dgp_did_cs_CS2021.py
│ ├── did.py
│ ├── did_aggregation.py
│ ├── did_binary.py
│ ├── did_cs.py
│ ├── did_cs_binary.py
│ ├── did_multi.py
│ ├── tests
│ │ ├── __init__.py
│ │ ├── _utils_did_cs_manual.py
│ │ ├── _utils_did_manual.py
│ │ ├── conftest.py
│ │ ├── test_datasets.py
│ │ ├── test_did.py
│ │ ├── test_did_aggregation.py
│ │ ├── test_did_aggregation_exceptions.py
│ │ ├── test_did_aggregation_plot.py
│ │ ├── test_did_aggregation_return_types.py
│ │ ├── test_did_binary_control_groups.py
│ │ ├── test_did_binary_exceptions.py
│ │ ├── test_did_binary_external_predictions.py
│ │ ├── test_did_binary_external_predictions_unbalanced.py
│ │ ├── test_did_binary_placebo.py
│ │ ├── test_did_binary_ps_processor.py
│ │ ├── test_did_binary_stdout.py
│ │ ├── test_did_binary_tune.py
│ │ ├── test_did_binary_tune_ml_models.py
│ │ ├── test_did_binary_vs_did_panel.py
│ │ ├── test_did_binary_vs_did_two_period.py
│ │ ├── test_did_cs.py
│ │ ├── test_did_cs_binary_control_groups.py
│ │ ├── test_did_cs_binary_exceptions.py
│ │ ├── test_did_cs_binary_external_predictions.py
│ │ ├── test_did_cs_binary_placebo.py
│ │ ├── test_did_cs_binary_ps_processor.py
│ │ ├── test_did_cs_binary_stdout.py
│ │ ├── test_did_cs_binary_tune.py
│ │ ├── test_did_cs_binary_tune_ml_models.py
│ │ ├── test_did_cs_binary_vs_did_cs_panel.py
│ │ ├── test_did_cs_binary_vs_did_cs_two_period.py
│ │ ├── test_did_cs_external_predictions.py
│ │ ├── test_did_cs_tune.py
│ │ ├── test_did_cs_tune_ml_models.py
│ │ ├── test_did_deprecation_warnings.py
│ │ ├── test_did_external_predictions.py
│ │ ├── test_did_multi_aggregation_manual_weights.py
│ │ ├── test_did_multi_aggregation_single_gt.py
│ │ ├── test_did_multi_exceptions.py
│ │ ├── test_did_multi_external_predictions.py
│ │ ├── test_did_multi_placebo.py
│ │ ├── test_did_multi_plot.py
│ │ ├── test_did_multi_return_types.py
│ │ ├── test_did_multi_vs_binary.py
│ │ ├── test_did_multi_vs_cs_binary.py
│ │ ├── test_did_tune.py
│ │ ├── test_did_tune_ml_models.py
│ │ ├── test_model_defaults.py
│ │ └── test_return_types.py
│ └── utils
│ │ ├── _aggregation.py
│ │ ├── _did_utils.py
│ │ ├── _plot.py
│ │ └── tests
│ │ ├── test_add_jitter.py
│ │ ├── test_check_did_aggregation.py
│ │ ├── test_did_eventstudy_aggregation.py
│ │ ├── test_did_group_aggregation.py
│ │ ├── test_did_time_aggregation.py
│ │ └── test_did_utils.py
├── double_ml.py
├── double_ml_framework.py
├── double_ml_sampling_mixins.py
├── double_ml_score_mixins.py
├── irm
│ ├── __init__.py
│ ├── apo.py
│ ├── apos.py
│ ├── cvar.py
│ ├── datasets
│ │ ├── __init__.py
│ │ ├── dgp_confounded_irm_data.py
│ │ ├── dgp_heterogeneous_data.py
│ │ ├── dgp_iivm_data.py
│ │ ├── dgp_irm_data.py
│ │ ├── dgp_irm_data_discrete_treatments.py
│ │ └── dgp_ssm_data.py
│ ├── iivm.py
│ ├── irm.py
│ ├── lpq.py
│ ├── pq.py
│ ├── qte.py
│ ├── ssm.py
│ └── tests
│ │ ├── __init__.py
│ │ ├── _utils_apo_manual.py
│ │ ├── _utils_apos_manual.py
│ │ ├── _utils_cvar_manual.py
│ │ ├── _utils_iivm_manual.py
│ │ ├── _utils_irm_manual.py
│ │ ├── _utils_lpq_manual.py
│ │ ├── _utils_pq_manual.py
│ │ ├── _utils_qte_manual.py
│ │ ├── _utils_ssm_manual.py
│ │ ├── conftest.py
│ │ ├── test_apo.py
│ │ ├── test_apo_classifier.py
│ │ ├── test_apo_exceptions.py
│ │ ├── test_apo_external_predictions.py
│ │ ├── test_apo_ps_processor.py
│ │ ├── test_apo_tune.py
│ │ ├── test_apo_tune_ml_models.py
│ │ ├── test_apo_weighted_scores.py
│ │ ├── test_apos.py
│ │ ├── test_apos_classfier.py
│ │ ├── test_apos_exceptions.py
│ │ ├── test_apos_external_predictions.py
│ │ ├── test_apos_weighted_scores.py
│ │ ├── test_cvar.py
│ │ ├── test_cvar_ps_processor.py
│ │ ├── test_cvar_tune.py
│ │ ├── test_cvar_tune_ml_models.py
│ │ ├── test_datasets.py
│ │ ├── test_iivm.py
│ │ ├── test_iivm_classifier.py
│ │ ├── test_iivm_external_predictions.py
│ │ ├── test_iivm_ps_processor.py
│ │ ├── test_iivm_subgroups.py
│ │ ├── test_iivm_tune.py
│ │ ├── test_iivm_tune_ml_models.py
│ │ ├── test_iivm_unif_confset.py
│ │ ├── test_irm.py
│ │ ├── test_irm_classifier.py
│ │ ├── test_irm_external_predictions.py
│ │ ├── test_irm_ps_processor.py
│ │ ├── test_irm_tune.py
│ │ ├── test_irm_tune_ml_models.py
│ │ ├── test_irm_vs_apos.py
│ │ ├── test_irm_weighted_scores.py
│ │ ├── test_irm_with_missings.py
│ │ ├── test_lpq.py
│ │ ├── test_lpq_external_predictions.py
│ │ ├── test_lpq_ps_processor.py
│ │ ├── test_lpq_tune.py
│ │ ├── test_lpq_tune_ml_models.py
│ │ ├── test_pq.py
│ │ ├── test_pq_external_predictions.py
│ │ ├── test_pq_ps_processor.py
│ │ ├── test_pq_tune.py
│ │ ├── test_pq_tune_ml_models.py
│ │ ├── test_qte.py
│ │ ├── test_qte_exceptions.py
│ │ ├── test_ssm.py
│ │ ├── test_ssm_exceptions.py
│ │ ├── test_ssm_ps_processor.py
│ │ ├── test_ssm_tune.py
│ │ └── test_ssm_tune_ml_models.py
├── plm
│ ├── __init__.py
│ ├── datasets
│ │ ├── __init__.py
│ │ ├── _make_pliv_data.py
│ │ ├── dgp_confounded_plr_data.py
│ │ ├── dgp_lplr_LZZ2020.py
│ │ ├── dgp_pliv_CHS2015.py
│ │ ├── dgp_pliv_multiway_cluster_CKMS2021.py
│ │ ├── dgp_plr_CCDDHNR2018.py
│ │ └── dgp_plr_turrell2018.py
│ ├── lplr.py
│ ├── pliv.py
│ ├── plr.py
│ └── tests
│ │ ├── __init__.py
│ │ ├── _utils_pliv_manual.py
│ │ ├── _utils_pliv_partial_x_manual.py
│ │ ├── _utils_pliv_partial_xz_manual.py
│ │ ├── _utils_pliv_partial_z_manual.py
│ │ ├── _utils_plr_manual.py
│ │ ├── conftest.py
│ │ ├── test_datasets.py
│ │ ├── test_lplr.py
│ │ ├── test_lplr_exceptions.py
│ │ ├── test_lplr_external_predictions.py
│ │ ├── test_lplr_tune.py
│ │ ├── test_lplr_tune_ml_models.py
│ │ ├── test_model_defaults.py
│ │ ├── test_pliv.py
│ │ ├── test_pliv_external_predictions.py
│ │ ├── test_pliv_partial_x.py
│ │ ├── test_pliv_partial_x_tune.py
│ │ ├── test_pliv_partial_xz.py
│ │ ├── test_pliv_partial_xz_tune.py
│ │ ├── test_pliv_partial_z.py
│ │ ├── test_pliv_partial_z_tune.py
│ │ ├── test_pliv_tune.py
│ │ ├── test_pliv_tune_ml_models.py
│ │ ├── test_plr.py
│ │ ├── test_plr_binary_outcome.py
│ │ ├── test_plr_classifier.py
│ │ ├── test_plr_external_predictions.py
│ │ ├── test_plr_multi_treat.py
│ │ ├── test_plr_reestimate_from_scores.py
│ │ ├── test_plr_rep_cross.py
│ │ ├── test_plr_set_ml_nuisance_pars.py
│ │ ├── test_plr_set_smpls_externally.py
│ │ ├── test_plr_tune.py
│ │ ├── test_plr_tune_ml_models.py
│ │ └── test_return_types.py
├── rdd
│ ├── __init__.py
│ ├── _utils.py
│ ├── datasets
│ │ ├── __init__.py
│ │ └── simple_dgp.py
│ ├── rdd.py
│ └── tests
│ │ ├── __init__.py
│ │ ├── conftest.py
│ │ ├── test_rdd_classifier.py
│ │ ├── test_rdd_classifier_fuzzy.py
│ │ ├── test_rdd_classifier_fuzzy_left.py
│ │ ├── test_rdd_classifier_fuzzy_right.py
│ │ ├── test_rdd_classifier_sharp.py
│ │ ├── test_rdd_default_values.py
│ │ ├── test_rdd_exceptions.py
│ │ ├── test_rdd_fuzzy.py
│ │ ├── test_rdd_fuzzy_left.py
│ │ ├── test_rdd_fuzzy_right.py
│ │ ├── test_rdd_not_installed.py
│ │ ├── test_rdd_return_types.py
│ │ └── test_rdd_sharp.py
├── tests
│ ├── __init__.py
│ ├── _utils.py
│ ├── _utils_boot.py
│ ├── _utils_cluster.py
│ ├── _utils_dml_cv_predict.py
│ ├── _utils_doubleml_sensitivity_manual.py
│ ├── _utils_tune_optuna.py
│ ├── conftest.py
│ ├── test_core_exceptions.py
│ ├── test_cv_predict.py
│ ├── test_datasets.py
│ ├── test_dml_tune_optuna.py
│ ├── test_dml_tune_optuna_exceptions.py
│ ├── test_evaluate_learner.py
│ ├── test_exceptions.py
│ ├── test_exceptions_ext_preds.py
│ ├── test_framework.py
│ ├── test_framework_coverage.py
│ ├── test_framework_exceptions.py
│ ├── test_framework_pval_corrections.py
│ ├── test_framework_sensitivity.py
│ ├── test_init.py
│ ├── test_model_defaults.py
│ ├── test_multiway_cluster.py
│ ├── test_nonlinear_cluster.py
│ ├── test_nonlinear_score_mixin.py
│ ├── test_optuna_multi_wrappers.py
│ ├── test_optuna_settings_validation.py
│ ├── test_optuna_tune_multiple_treatments.py
│ ├── test_package.py
│ ├── test_return_types.py
│ ├── test_scores.py
│ ├── test_sensitivity.py
│ ├── test_sensitivity_cluster.py
│ ├── test_set_ml_nuisance_params.py
│ ├── test_set_ml_nuisance_params_models.py
│ ├── test_set_sample_splitting.py
│ └── test_set_sample_splitting_exceptions.py
└── utils
│ ├── __init__.py
│ ├── _aliases.py
│ ├── _check_defaults.py
│ ├── _check_return_types.py
│ ├── _checks.py
│ ├── _descriptive.py
│ ├── _estimation.py
│ ├── _plots.py
│ ├── _propensity_score.py
│ ├── _sensitivity.py
│ ├── _tune_optuna.py
│ ├── blp.py
│ ├── dummy_learners.py
│ ├── gain_statistics.py
│ ├── global_learner.py
│ ├── policytree.py
│ ├── propensity_score_processing.py
│ ├── resampling.py
│ └── tests
│ ├── __init__.py
│ ├── _utils_blp_manual.py
│ ├── _utils_pt_manual.py
│ ├── test_blp.py
│ ├── test_dummy_learners.py
│ ├── test_exceptions_gain_statistics.py
│ ├── test_exceptions_global_learners.py
│ ├── test_global_learners.py
│ ├── test_policytree.py
│ ├── test_ps_processor.py
│ ├── test_ps_processor_exceptions.py
│ ├── test_quadratic_inequality.py
│ ├── test_resampling.py
│ └── test_var_est_and_aggregation.py
└── pyproject.toml
/.github/ISSUE_TEMPLATE/api_docu.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/.github/ISSUE_TEMPLATE/api_docu.yml
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/bug_report.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/config.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/.github/ISSUE_TEMPLATE/config.yml
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/feature_request.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml
--------------------------------------------------------------------------------
/.github/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/.github/PULL_REQUEST_TEMPLATE.md
--------------------------------------------------------------------------------
/.github/workflows/codeql.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/.github/workflows/codeql.yml
--------------------------------------------------------------------------------
/.github/workflows/deploy_pkg.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/.github/workflows/deploy_pkg.yml
--------------------------------------------------------------------------------
/.github/workflows/pytest.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/.github/workflows/pytest.yml
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/.gitignore
--------------------------------------------------------------------------------
/.pre-commit-config.yaml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/.pre-commit-config.yaml
--------------------------------------------------------------------------------
/CITATION.cff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/CITATION.cff
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/CODE_OF_CONDUCT.md
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/CONTRIBUTING.md
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/LICENSE
--------------------------------------------------------------------------------
/MANIFEST.in:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/MANIFEST.in
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/README.md
--------------------------------------------------------------------------------
/codecov.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/codecov.yml
--------------------------------------------------------------------------------
/doc/.gitignore:
--------------------------------------------------------------------------------
1 | _build
2 | _static
3 |
--------------------------------------------------------------------------------
/doc/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doc/Makefile
--------------------------------------------------------------------------------
/doc/_templates/class.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doc/_templates/class.rst
--------------------------------------------------------------------------------
/doc/api/api.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doc/api/api.rst
--------------------------------------------------------------------------------
/doc/conf.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doc/conf.py
--------------------------------------------------------------------------------
/doc/index.rst:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doc/index.rst
--------------------------------------------------------------------------------
/doc/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doc/logo.png
--------------------------------------------------------------------------------
/doc/make.bat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doc/make.bat
--------------------------------------------------------------------------------
/doc/oop.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doc/oop.svg
--------------------------------------------------------------------------------
/doubleml/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/__init__.py
--------------------------------------------------------------------------------
/doubleml/data/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/data/__init__.py
--------------------------------------------------------------------------------
/doubleml/data/base_data.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/data/base_data.py
--------------------------------------------------------------------------------
/doubleml/data/did_data.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/data/did_data.py
--------------------------------------------------------------------------------
/doubleml/data/panel_data.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/data/panel_data.py
--------------------------------------------------------------------------------
/doubleml/data/rdd_data.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/data/rdd_data.py
--------------------------------------------------------------------------------
/doubleml/data/ssm_data.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/data/ssm_data.py
--------------------------------------------------------------------------------
/doubleml/data/tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/doubleml/data/tests/conftest.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/data/tests/conftest.py
--------------------------------------------------------------------------------
/doubleml/data/tests/test_cluster_data.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/data/tests/test_cluster_data.py
--------------------------------------------------------------------------------
/doubleml/data/tests/test_dml_data.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/data/tests/test_dml_data.py
--------------------------------------------------------------------------------
/doubleml/data/tests/test_panel_data.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/data/tests/test_panel_data.py
--------------------------------------------------------------------------------
/doubleml/data/tests/test_panel_data_exceptions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/data/tests/test_panel_data_exceptions.py
--------------------------------------------------------------------------------
/doubleml/data/utils/panel_data_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/data/utils/panel_data_utils.py
--------------------------------------------------------------------------------
/doubleml/data/utils/tests/test_panel_data_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/data/utils/tests/test_panel_data_utils.py
--------------------------------------------------------------------------------
/doubleml/datasets/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/datasets/__init__.py
--------------------------------------------------------------------------------
/doubleml/datasets/fetch_401K.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/datasets/fetch_401K.py
--------------------------------------------------------------------------------
/doubleml/datasets/fetch_bonus.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/datasets/fetch_bonus.py
--------------------------------------------------------------------------------
/doubleml/did/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/__init__.py
--------------------------------------------------------------------------------
/doubleml/did/datasets/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/datasets/__init__.py
--------------------------------------------------------------------------------
/doubleml/did/datasets/dgp_did_CS2021.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/datasets/dgp_did_CS2021.py
--------------------------------------------------------------------------------
/doubleml/did/datasets/dgp_did_SZ2020.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/datasets/dgp_did_SZ2020.py
--------------------------------------------------------------------------------
/doubleml/did/datasets/dgp_did_cs_CS2021.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/datasets/dgp_did_cs_CS2021.py
--------------------------------------------------------------------------------
/doubleml/did/did.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/did.py
--------------------------------------------------------------------------------
/doubleml/did/did_aggregation.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/did_aggregation.py
--------------------------------------------------------------------------------
/doubleml/did/did_binary.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/did_binary.py
--------------------------------------------------------------------------------
/doubleml/did/did_cs.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/did_cs.py
--------------------------------------------------------------------------------
/doubleml/did/did_cs_binary.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/did_cs_binary.py
--------------------------------------------------------------------------------
/doubleml/did/did_multi.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/did_multi.py
--------------------------------------------------------------------------------
/doubleml/did/tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/doubleml/did/tests/_utils_did_cs_manual.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/_utils_did_cs_manual.py
--------------------------------------------------------------------------------
/doubleml/did/tests/_utils_did_manual.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/_utils_did_manual.py
--------------------------------------------------------------------------------
/doubleml/did/tests/conftest.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/conftest.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_datasets.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_datasets.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_aggregation.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_aggregation.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_aggregation_exceptions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_aggregation_exceptions.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_aggregation_plot.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_aggregation_plot.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_aggregation_return_types.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_aggregation_return_types.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_binary_control_groups.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_binary_control_groups.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_binary_exceptions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_binary_exceptions.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_binary_external_predictions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_binary_external_predictions.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_binary_external_predictions_unbalanced.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_binary_external_predictions_unbalanced.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_binary_placebo.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_binary_placebo.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_binary_ps_processor.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_binary_ps_processor.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_binary_stdout.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_binary_stdout.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_binary_tune.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_binary_tune.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_binary_tune_ml_models.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_binary_tune_ml_models.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_binary_vs_did_panel.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_binary_vs_did_panel.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_binary_vs_did_two_period.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_binary_vs_did_two_period.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_cs.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_cs.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_cs_binary_control_groups.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_cs_binary_control_groups.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_cs_binary_exceptions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_cs_binary_exceptions.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_cs_binary_external_predictions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_cs_binary_external_predictions.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_cs_binary_placebo.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_cs_binary_placebo.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_cs_binary_ps_processor.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_cs_binary_ps_processor.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_cs_binary_stdout.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_cs_binary_stdout.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_cs_binary_tune.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_cs_binary_tune.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_cs_binary_tune_ml_models.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_cs_binary_tune_ml_models.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_cs_binary_vs_did_cs_panel.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_cs_binary_vs_did_cs_panel.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_cs_binary_vs_did_cs_two_period.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_cs_binary_vs_did_cs_two_period.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_cs_external_predictions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_cs_external_predictions.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_cs_tune.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_cs_tune.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_cs_tune_ml_models.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_cs_tune_ml_models.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_deprecation_warnings.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_deprecation_warnings.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_external_predictions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_external_predictions.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_multi_aggregation_manual_weights.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_multi_aggregation_manual_weights.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_multi_aggregation_single_gt.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_multi_aggregation_single_gt.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_multi_exceptions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_multi_exceptions.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_multi_external_predictions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_multi_external_predictions.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_multi_placebo.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_multi_placebo.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_multi_plot.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_multi_plot.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_multi_return_types.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_multi_return_types.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_multi_vs_binary.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_multi_vs_binary.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_multi_vs_cs_binary.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_multi_vs_cs_binary.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_tune.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_tune.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_did_tune_ml_models.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_did_tune_ml_models.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_model_defaults.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_model_defaults.py
--------------------------------------------------------------------------------
/doubleml/did/tests/test_return_types.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/tests/test_return_types.py
--------------------------------------------------------------------------------
/doubleml/did/utils/_aggregation.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/utils/_aggregation.py
--------------------------------------------------------------------------------
/doubleml/did/utils/_did_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/utils/_did_utils.py
--------------------------------------------------------------------------------
/doubleml/did/utils/_plot.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/utils/_plot.py
--------------------------------------------------------------------------------
/doubleml/did/utils/tests/test_add_jitter.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/utils/tests/test_add_jitter.py
--------------------------------------------------------------------------------
/doubleml/did/utils/tests/test_check_did_aggregation.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/utils/tests/test_check_did_aggregation.py
--------------------------------------------------------------------------------
/doubleml/did/utils/tests/test_did_eventstudy_aggregation.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/utils/tests/test_did_eventstudy_aggregation.py
--------------------------------------------------------------------------------
/doubleml/did/utils/tests/test_did_group_aggregation.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/utils/tests/test_did_group_aggregation.py
--------------------------------------------------------------------------------
/doubleml/did/utils/tests/test_did_time_aggregation.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/utils/tests/test_did_time_aggregation.py
--------------------------------------------------------------------------------
/doubleml/did/utils/tests/test_did_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/did/utils/tests/test_did_utils.py
--------------------------------------------------------------------------------
/doubleml/double_ml.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/double_ml.py
--------------------------------------------------------------------------------
/doubleml/double_ml_framework.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/double_ml_framework.py
--------------------------------------------------------------------------------
/doubleml/double_ml_sampling_mixins.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/double_ml_sampling_mixins.py
--------------------------------------------------------------------------------
/doubleml/double_ml_score_mixins.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/double_ml_score_mixins.py
--------------------------------------------------------------------------------
/doubleml/irm/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/__init__.py
--------------------------------------------------------------------------------
/doubleml/irm/apo.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/apo.py
--------------------------------------------------------------------------------
/doubleml/irm/apos.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/apos.py
--------------------------------------------------------------------------------
/doubleml/irm/cvar.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/cvar.py
--------------------------------------------------------------------------------
/doubleml/irm/datasets/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/datasets/__init__.py
--------------------------------------------------------------------------------
/doubleml/irm/datasets/dgp_confounded_irm_data.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/datasets/dgp_confounded_irm_data.py
--------------------------------------------------------------------------------
/doubleml/irm/datasets/dgp_heterogeneous_data.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/datasets/dgp_heterogeneous_data.py
--------------------------------------------------------------------------------
/doubleml/irm/datasets/dgp_iivm_data.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/datasets/dgp_iivm_data.py
--------------------------------------------------------------------------------
/doubleml/irm/datasets/dgp_irm_data.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/datasets/dgp_irm_data.py
--------------------------------------------------------------------------------
/doubleml/irm/datasets/dgp_irm_data_discrete_treatments.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/datasets/dgp_irm_data_discrete_treatments.py
--------------------------------------------------------------------------------
/doubleml/irm/datasets/dgp_ssm_data.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/datasets/dgp_ssm_data.py
--------------------------------------------------------------------------------
/doubleml/irm/iivm.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/iivm.py
--------------------------------------------------------------------------------
/doubleml/irm/irm.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/irm.py
--------------------------------------------------------------------------------
/doubleml/irm/lpq.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/lpq.py
--------------------------------------------------------------------------------
/doubleml/irm/pq.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/pq.py
--------------------------------------------------------------------------------
/doubleml/irm/qte.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/qte.py
--------------------------------------------------------------------------------
/doubleml/irm/ssm.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/ssm.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/doubleml/irm/tests/_utils_apo_manual.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/_utils_apo_manual.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/_utils_apos_manual.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/_utils_apos_manual.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/_utils_cvar_manual.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/_utils_cvar_manual.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/_utils_iivm_manual.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/_utils_iivm_manual.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/_utils_irm_manual.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/_utils_irm_manual.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/_utils_lpq_manual.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/_utils_lpq_manual.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/_utils_pq_manual.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/_utils_pq_manual.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/_utils_qte_manual.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/_utils_qte_manual.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/_utils_ssm_manual.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/_utils_ssm_manual.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/conftest.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/conftest.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_apo.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_apo.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_apo_classifier.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_apo_classifier.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_apo_exceptions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_apo_exceptions.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_apo_external_predictions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_apo_external_predictions.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_apo_ps_processor.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_apo_ps_processor.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_apo_tune.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_apo_tune.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_apo_tune_ml_models.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_apo_tune_ml_models.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_apo_weighted_scores.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_apo_weighted_scores.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_apos.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_apos.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_apos_classfier.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_apos_classfier.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_apos_exceptions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_apos_exceptions.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_apos_external_predictions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_apos_external_predictions.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_apos_weighted_scores.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_apos_weighted_scores.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_cvar.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_cvar.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_cvar_ps_processor.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_cvar_ps_processor.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_cvar_tune.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_cvar_tune.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_cvar_tune_ml_models.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_cvar_tune_ml_models.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_datasets.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_datasets.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_iivm.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_iivm.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_iivm_classifier.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_iivm_classifier.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_iivm_external_predictions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_iivm_external_predictions.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_iivm_ps_processor.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_iivm_ps_processor.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_iivm_subgroups.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_iivm_subgroups.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_iivm_tune.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_iivm_tune.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_iivm_tune_ml_models.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_iivm_tune_ml_models.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_iivm_unif_confset.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_iivm_unif_confset.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_irm.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_irm.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_irm_classifier.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_irm_classifier.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_irm_external_predictions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_irm_external_predictions.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_irm_ps_processor.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_irm_ps_processor.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_irm_tune.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_irm_tune.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_irm_tune_ml_models.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_irm_tune_ml_models.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_irm_vs_apos.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_irm_vs_apos.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_irm_weighted_scores.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_irm_weighted_scores.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_irm_with_missings.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_irm_with_missings.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_lpq.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_lpq.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_lpq_external_predictions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_lpq_external_predictions.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_lpq_ps_processor.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_lpq_ps_processor.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_lpq_tune.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_lpq_tune.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_lpq_tune_ml_models.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_lpq_tune_ml_models.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_pq.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_pq.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_pq_external_predictions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_pq_external_predictions.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_pq_ps_processor.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_pq_ps_processor.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_pq_tune.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_pq_tune.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_pq_tune_ml_models.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_pq_tune_ml_models.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_qte.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_qte.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_qte_exceptions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_qte_exceptions.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_ssm.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_ssm.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_ssm_exceptions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_ssm_exceptions.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_ssm_ps_processor.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_ssm_ps_processor.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_ssm_tune.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_ssm_tune.py
--------------------------------------------------------------------------------
/doubleml/irm/tests/test_ssm_tune_ml_models.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/irm/tests/test_ssm_tune_ml_models.py
--------------------------------------------------------------------------------
/doubleml/plm/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/__init__.py
--------------------------------------------------------------------------------
/doubleml/plm/datasets/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/datasets/__init__.py
--------------------------------------------------------------------------------
/doubleml/plm/datasets/_make_pliv_data.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/datasets/_make_pliv_data.py
--------------------------------------------------------------------------------
/doubleml/plm/datasets/dgp_confounded_plr_data.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/datasets/dgp_confounded_plr_data.py
--------------------------------------------------------------------------------
/doubleml/plm/datasets/dgp_lplr_LZZ2020.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/datasets/dgp_lplr_LZZ2020.py
--------------------------------------------------------------------------------
/doubleml/plm/datasets/dgp_pliv_CHS2015.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/datasets/dgp_pliv_CHS2015.py
--------------------------------------------------------------------------------
/doubleml/plm/datasets/dgp_pliv_multiway_cluster_CKMS2021.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/datasets/dgp_pliv_multiway_cluster_CKMS2021.py
--------------------------------------------------------------------------------
/doubleml/plm/datasets/dgp_plr_CCDDHNR2018.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/datasets/dgp_plr_CCDDHNR2018.py
--------------------------------------------------------------------------------
/doubleml/plm/datasets/dgp_plr_turrell2018.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/datasets/dgp_plr_turrell2018.py
--------------------------------------------------------------------------------
/doubleml/plm/lplr.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/lplr.py
--------------------------------------------------------------------------------
/doubleml/plm/pliv.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/pliv.py
--------------------------------------------------------------------------------
/doubleml/plm/plr.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/plr.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/doubleml/plm/tests/_utils_pliv_manual.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/_utils_pliv_manual.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/_utils_pliv_partial_x_manual.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/_utils_pliv_partial_x_manual.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/_utils_pliv_partial_xz_manual.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/_utils_pliv_partial_xz_manual.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/_utils_pliv_partial_z_manual.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/_utils_pliv_partial_z_manual.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/_utils_plr_manual.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/_utils_plr_manual.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/conftest.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/conftest.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_datasets.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_datasets.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_lplr.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_lplr.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_lplr_exceptions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_lplr_exceptions.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_lplr_external_predictions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_lplr_external_predictions.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_lplr_tune.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_lplr_tune.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_lplr_tune_ml_models.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_lplr_tune_ml_models.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_model_defaults.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_model_defaults.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_pliv.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_pliv.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_pliv_external_predictions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_pliv_external_predictions.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_pliv_partial_x.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_pliv_partial_x.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_pliv_partial_x_tune.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_pliv_partial_x_tune.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_pliv_partial_xz.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_pliv_partial_xz.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_pliv_partial_xz_tune.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_pliv_partial_xz_tune.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_pliv_partial_z.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_pliv_partial_z.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_pliv_partial_z_tune.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_pliv_partial_z_tune.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_pliv_tune.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_pliv_tune.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_pliv_tune_ml_models.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_pliv_tune_ml_models.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_plr.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_plr.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_plr_binary_outcome.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_plr_binary_outcome.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_plr_classifier.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_plr_classifier.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_plr_external_predictions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_plr_external_predictions.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_plr_multi_treat.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_plr_multi_treat.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_plr_reestimate_from_scores.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_plr_reestimate_from_scores.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_plr_rep_cross.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_plr_rep_cross.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_plr_set_ml_nuisance_pars.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_plr_set_ml_nuisance_pars.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_plr_set_smpls_externally.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_plr_set_smpls_externally.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_plr_tune.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_plr_tune.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_plr_tune_ml_models.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_plr_tune_ml_models.py
--------------------------------------------------------------------------------
/doubleml/plm/tests/test_return_types.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/plm/tests/test_return_types.py
--------------------------------------------------------------------------------
/doubleml/rdd/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/rdd/__init__.py
--------------------------------------------------------------------------------
/doubleml/rdd/_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/rdd/_utils.py
--------------------------------------------------------------------------------
/doubleml/rdd/datasets/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/rdd/datasets/__init__.py
--------------------------------------------------------------------------------
/doubleml/rdd/datasets/simple_dgp.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/rdd/datasets/simple_dgp.py
--------------------------------------------------------------------------------
/doubleml/rdd/rdd.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/rdd/rdd.py
--------------------------------------------------------------------------------
/doubleml/rdd/tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/doubleml/rdd/tests/conftest.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/rdd/tests/conftest.py
--------------------------------------------------------------------------------
/doubleml/rdd/tests/test_rdd_classifier.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/rdd/tests/test_rdd_classifier.py
--------------------------------------------------------------------------------
/doubleml/rdd/tests/test_rdd_classifier_fuzzy.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/rdd/tests/test_rdd_classifier_fuzzy.py
--------------------------------------------------------------------------------
/doubleml/rdd/tests/test_rdd_classifier_fuzzy_left.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/rdd/tests/test_rdd_classifier_fuzzy_left.py
--------------------------------------------------------------------------------
/doubleml/rdd/tests/test_rdd_classifier_fuzzy_right.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/rdd/tests/test_rdd_classifier_fuzzy_right.py
--------------------------------------------------------------------------------
/doubleml/rdd/tests/test_rdd_classifier_sharp.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/rdd/tests/test_rdd_classifier_sharp.py
--------------------------------------------------------------------------------
/doubleml/rdd/tests/test_rdd_default_values.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/rdd/tests/test_rdd_default_values.py
--------------------------------------------------------------------------------
/doubleml/rdd/tests/test_rdd_exceptions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/rdd/tests/test_rdd_exceptions.py
--------------------------------------------------------------------------------
/doubleml/rdd/tests/test_rdd_fuzzy.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/rdd/tests/test_rdd_fuzzy.py
--------------------------------------------------------------------------------
/doubleml/rdd/tests/test_rdd_fuzzy_left.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/rdd/tests/test_rdd_fuzzy_left.py
--------------------------------------------------------------------------------
/doubleml/rdd/tests/test_rdd_fuzzy_right.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/rdd/tests/test_rdd_fuzzy_right.py
--------------------------------------------------------------------------------
/doubleml/rdd/tests/test_rdd_not_installed.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/rdd/tests/test_rdd_not_installed.py
--------------------------------------------------------------------------------
/doubleml/rdd/tests/test_rdd_return_types.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/rdd/tests/test_rdd_return_types.py
--------------------------------------------------------------------------------
/doubleml/rdd/tests/test_rdd_sharp.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/rdd/tests/test_rdd_sharp.py
--------------------------------------------------------------------------------
/doubleml/tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/doubleml/tests/_utils.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/_utils.py
--------------------------------------------------------------------------------
/doubleml/tests/_utils_boot.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/_utils_boot.py
--------------------------------------------------------------------------------
/doubleml/tests/_utils_cluster.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/_utils_cluster.py
--------------------------------------------------------------------------------
/doubleml/tests/_utils_dml_cv_predict.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/_utils_dml_cv_predict.py
--------------------------------------------------------------------------------
/doubleml/tests/_utils_doubleml_sensitivity_manual.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/_utils_doubleml_sensitivity_manual.py
--------------------------------------------------------------------------------
/doubleml/tests/_utils_tune_optuna.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/_utils_tune_optuna.py
--------------------------------------------------------------------------------
/doubleml/tests/conftest.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/conftest.py
--------------------------------------------------------------------------------
/doubleml/tests/test_core_exceptions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_core_exceptions.py
--------------------------------------------------------------------------------
/doubleml/tests/test_cv_predict.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_cv_predict.py
--------------------------------------------------------------------------------
/doubleml/tests/test_datasets.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_datasets.py
--------------------------------------------------------------------------------
/doubleml/tests/test_dml_tune_optuna.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_dml_tune_optuna.py
--------------------------------------------------------------------------------
/doubleml/tests/test_dml_tune_optuna_exceptions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_dml_tune_optuna_exceptions.py
--------------------------------------------------------------------------------
/doubleml/tests/test_evaluate_learner.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_evaluate_learner.py
--------------------------------------------------------------------------------
/doubleml/tests/test_exceptions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_exceptions.py
--------------------------------------------------------------------------------
/doubleml/tests/test_exceptions_ext_preds.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_exceptions_ext_preds.py
--------------------------------------------------------------------------------
/doubleml/tests/test_framework.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_framework.py
--------------------------------------------------------------------------------
/doubleml/tests/test_framework_coverage.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_framework_coverage.py
--------------------------------------------------------------------------------
/doubleml/tests/test_framework_exceptions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_framework_exceptions.py
--------------------------------------------------------------------------------
/doubleml/tests/test_framework_pval_corrections.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_framework_pval_corrections.py
--------------------------------------------------------------------------------
/doubleml/tests/test_framework_sensitivity.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_framework_sensitivity.py
--------------------------------------------------------------------------------
/doubleml/tests/test_init.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_init.py
--------------------------------------------------------------------------------
/doubleml/tests/test_model_defaults.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_model_defaults.py
--------------------------------------------------------------------------------
/doubleml/tests/test_multiway_cluster.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_multiway_cluster.py
--------------------------------------------------------------------------------
/doubleml/tests/test_nonlinear_cluster.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_nonlinear_cluster.py
--------------------------------------------------------------------------------
/doubleml/tests/test_nonlinear_score_mixin.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_nonlinear_score_mixin.py
--------------------------------------------------------------------------------
/doubleml/tests/test_optuna_multi_wrappers.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_optuna_multi_wrappers.py
--------------------------------------------------------------------------------
/doubleml/tests/test_optuna_settings_validation.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_optuna_settings_validation.py
--------------------------------------------------------------------------------
/doubleml/tests/test_optuna_tune_multiple_treatments.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_optuna_tune_multiple_treatments.py
--------------------------------------------------------------------------------
/doubleml/tests/test_package.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_package.py
--------------------------------------------------------------------------------
/doubleml/tests/test_return_types.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_return_types.py
--------------------------------------------------------------------------------
/doubleml/tests/test_scores.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_scores.py
--------------------------------------------------------------------------------
/doubleml/tests/test_sensitivity.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_sensitivity.py
--------------------------------------------------------------------------------
/doubleml/tests/test_sensitivity_cluster.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_sensitivity_cluster.py
--------------------------------------------------------------------------------
/doubleml/tests/test_set_ml_nuisance_params.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_set_ml_nuisance_params.py
--------------------------------------------------------------------------------
/doubleml/tests/test_set_ml_nuisance_params_models.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_set_ml_nuisance_params_models.py
--------------------------------------------------------------------------------
/doubleml/tests/test_set_sample_splitting.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_set_sample_splitting.py
--------------------------------------------------------------------------------
/doubleml/tests/test_set_sample_splitting_exceptions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/tests/test_set_sample_splitting_exceptions.py
--------------------------------------------------------------------------------
/doubleml/utils/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/__init__.py
--------------------------------------------------------------------------------
/doubleml/utils/_aliases.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/_aliases.py
--------------------------------------------------------------------------------
/doubleml/utils/_check_defaults.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/_check_defaults.py
--------------------------------------------------------------------------------
/doubleml/utils/_check_return_types.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/_check_return_types.py
--------------------------------------------------------------------------------
/doubleml/utils/_checks.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/_checks.py
--------------------------------------------------------------------------------
/doubleml/utils/_descriptive.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/_descriptive.py
--------------------------------------------------------------------------------
/doubleml/utils/_estimation.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/_estimation.py
--------------------------------------------------------------------------------
/doubleml/utils/_plots.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/_plots.py
--------------------------------------------------------------------------------
/doubleml/utils/_propensity_score.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/_propensity_score.py
--------------------------------------------------------------------------------
/doubleml/utils/_sensitivity.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/_sensitivity.py
--------------------------------------------------------------------------------
/doubleml/utils/_tune_optuna.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/_tune_optuna.py
--------------------------------------------------------------------------------
/doubleml/utils/blp.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/blp.py
--------------------------------------------------------------------------------
/doubleml/utils/dummy_learners.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/dummy_learners.py
--------------------------------------------------------------------------------
/doubleml/utils/gain_statistics.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/gain_statistics.py
--------------------------------------------------------------------------------
/doubleml/utils/global_learner.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/global_learner.py
--------------------------------------------------------------------------------
/doubleml/utils/policytree.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/policytree.py
--------------------------------------------------------------------------------
/doubleml/utils/propensity_score_processing.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/propensity_score_processing.py
--------------------------------------------------------------------------------
/doubleml/utils/resampling.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/resampling.py
--------------------------------------------------------------------------------
/doubleml/utils/tests/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/doubleml/utils/tests/_utils_blp_manual.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/tests/_utils_blp_manual.py
--------------------------------------------------------------------------------
/doubleml/utils/tests/_utils_pt_manual.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/tests/_utils_pt_manual.py
--------------------------------------------------------------------------------
/doubleml/utils/tests/test_blp.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/tests/test_blp.py
--------------------------------------------------------------------------------
/doubleml/utils/tests/test_dummy_learners.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/tests/test_dummy_learners.py
--------------------------------------------------------------------------------
/doubleml/utils/tests/test_exceptions_gain_statistics.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/tests/test_exceptions_gain_statistics.py
--------------------------------------------------------------------------------
/doubleml/utils/tests/test_exceptions_global_learners.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/tests/test_exceptions_global_learners.py
--------------------------------------------------------------------------------
/doubleml/utils/tests/test_global_learners.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/tests/test_global_learners.py
--------------------------------------------------------------------------------
/doubleml/utils/tests/test_policytree.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/tests/test_policytree.py
--------------------------------------------------------------------------------
/doubleml/utils/tests/test_ps_processor.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/tests/test_ps_processor.py
--------------------------------------------------------------------------------
/doubleml/utils/tests/test_ps_processor_exceptions.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/tests/test_ps_processor_exceptions.py
--------------------------------------------------------------------------------
/doubleml/utils/tests/test_quadratic_inequality.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/tests/test_quadratic_inequality.py
--------------------------------------------------------------------------------
/doubleml/utils/tests/test_resampling.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/tests/test_resampling.py
--------------------------------------------------------------------------------
/doubleml/utils/tests/test_var_est_and_aggregation.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/doubleml/utils/tests/test_var_est_and_aggregation.py
--------------------------------------------------------------------------------
/pyproject.toml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/DoubleML/doubleml-for-py/HEAD/pyproject.toml
--------------------------------------------------------------------------------