LICENSE
README.md
pyproject.toml
src/xpyrment/__init__.py
src/xpyrment/_version.py
src/xpyrment/cli.py
src/xpyrment/simulation.py
src/xpyrment.egg-info/PKG-INFO
src/xpyrment.egg-info/SOURCES.txt
src/xpyrment.egg-info/dependency_links.txt
src/xpyrment.egg-info/entry_points.txt
src/xpyrment.egg-info/requires.txt
src/xpyrment.egg-info/top_level.txt
src/xpyrment/analyze/__init__.py
src/xpyrment/analyze/confounding.py
src/xpyrment/analyze/copula.py
src/xpyrment/analyze/corrections.py
src/xpyrment/analyze/extreme.py
src/xpyrment/analyze/its.py
src/xpyrment/analyze/markov.py
src/xpyrment/analyze/meta_regression.py
src/xpyrment/analyze/orchestrator.py
src/xpyrment/analyze/outliers.py
src/xpyrment/analyze/ratio.py
src/xpyrment/analyze/registry.py
src/xpyrment/analyze/sequential.py
src/xpyrment/analyze/srm.py
src/xpyrment/analyze/streaming.py
src/xpyrment/analyze/variance_reduction.py
src/xpyrment/analyze/inference/__init__.py
src/xpyrment/analyze/inference/bayesian.py
src/xpyrment/analyze/inference/bootstrap.py
src/xpyrment/analyze/inference/frequentist.py
src/xpyrment/analyze/inference/router.py
src/xpyrment/analyze/inference/sequential.py
src/xpyrment/assets/images/xpyrment_logo.svg
src/xpyrment/bandit/__init__.py
src/xpyrment/bandit/epsilon_greedy.py
src/xpyrment/bandit/multi_objective.py
src/xpyrment/bandit/non_stationary.py
src/xpyrment/bandit/ope.py
src/xpyrment/bandit/thompson.py
src/xpyrment/bandit/tuning.py
src/xpyrment/bandit/ucb.py
src/xpyrment/core/__init__.py
src/xpyrment/core/exceptions.py
src/xpyrment/core/experiment.py
src/xpyrment/core/registry.py
src/xpyrment/core/serialization.py
src/xpyrment/core/state.py
src/xpyrment/core/telemetry.py
src/xpyrment/core/types.py
src/xpyrment/design/__init__.py
src/xpyrment/design/power.py
src/xpyrment/design/randomization.py
src/xpyrment/design/splits.py
src/xpyrment/design/stratification.py
src/xpyrment/design/doe/__init__.py
src/xpyrment/design/doe/base.py
src/xpyrment/design/doe/box_behnken.py
src/xpyrment/design/doe/carryover.py
src/xpyrment/design/doe/ccd.py
src/xpyrment/design/doe/d_optimal.py
src/xpyrment/design/doe/dsd.py
src/xpyrment/design/doe/evop.py
src/xpyrment/design/doe/fractional_factorial.py
src/xpyrment/design/doe/full_factorial.py
src/xpyrment/design/doe/lhs.py
src/xpyrment/design/doe/mixture.py
src/xpyrment/design/doe/plackett_burman.py
src/xpyrment/design/doe/switchback.py
src/xpyrment/design/doe/taguchi.py
src/xpyrment/governance/__init__.py
src/xpyrment/governance/meta_analysis.py
src/xpyrment/governance/p_curve.py
src/xpyrment/interactions/__init__.py
src/xpyrment/interactions/anova.py
src/xpyrment/interactions/detector.py
src/xpyrment/interactions/hstat.py
src/xpyrment/interactions/plots.py
src/xpyrment/interactions/regression.py
src/xpyrment/interactions/shap.py
src/xpyrment/interpret/__init__.py
src/xpyrment/interpret/decision.py
src/xpyrment/interpret/effect_size.py
src/xpyrment/interpret/hte.py
src/xpyrment/interpret/significance.py
src/xpyrment/metrics/__init__.py
src/xpyrment/metrics/guardrails.py
src/xpyrment/metrics/taxonomy.py
src/xpyrment/metrics/transformations.py
src/xpyrment/network/__init__.py
src/xpyrment/network/cluster.py
src/xpyrment/network/federated.py
src/xpyrment/network/identity.py
src/xpyrment/network/partition.py
src/xpyrment/network/privacy.py
src/xpyrment/network/spillover.py
src/xpyrment/personalize/__init__.py
src/xpyrment/personalize/causal_forest.py
src/xpyrment/personalize/double_ml.py
src/xpyrment/personalize/dtr.py
src/xpyrment/personalize/infinite_mixture.py
src/xpyrment/personalize/meta_learners.py
src/xpyrment/personalize/subgroup.py
src/xpyrment/plan/__init__.py
src/xpyrment/plan/duration.py
src/xpyrment/plan/hypothesis.py
src/xpyrment/plan/power.py
src/xpyrment/plan/preregistration.py
src/xpyrment/quasi/__init__.py
src/xpyrment/quasi/balance.py
src/xpyrment/quasi/diff_in_diff.py
src/xpyrment/quasi/instrumental_variables.py
src/xpyrment/quasi/matching.py
src/xpyrment/quasi/matrix_completion.py
src/xpyrment/quasi/optimal_transport.py
src/xpyrment/quasi/rolling_synthetic_control.py
src/xpyrment/quasi/sdid.py
src/xpyrment/quasi/sensitivity.py
src/xpyrment/quasi/snmm.py
src/xpyrment/quasi/synthetic_control.py
src/xpyrment/report/__init__.py
src/xpyrment/report/audit.py
src/xpyrment/report/card.py
src/xpyrment/report/export.py
src/xpyrment/report/generator.py
src/xpyrment/run/__init__.py
src/xpyrment/run/assignment.py
src/xpyrment/run/ingestion.py
src/xpyrment/run/monitor.py
src/xpyrment/run/stopping.py
src/xpyrment/validate/__init__.py
src/xpyrment/validate/aa_test.py
src/xpyrment/validate/balance.py
src/xpyrment/validate/clean.py
src/xpyrment/validate/novelty.py
src/xpyrment/validate/srm.py
tests/test_analysis.py
tests/test_balance.py
tests/test_bandit.py
tests/test_bootstrap_harden.py
tests/test_clean_edge_cases.py
tests/test_cli.py
tests/test_core.py
tests/test_corrections.py
tests/test_design.py
tests/test_dtr.py
tests/test_extreme.py
tests/test_governance.py
tests/test_infinite_mixture.py
tests/test_instrumental_variables.py
tests/test_its.py
tests/test_meta_regression.py
tests/test_metrics.py
tests/test_network.py
tests/test_optimal_transport.py
tests/test_orchestrator_harden.py
tests/test_outliers.py
tests/test_personalize.py
tests/test_placebo.py
tests/test_power.py
tests/test_privacy.py
tests/test_quasi.py
tests/test_ratio.py
tests/test_registry.py
tests/test_report.py
tests/test_rolling_synthetic_control.py
tests/test_run.py
tests/test_sequential.py
tests/test_serialization.py
tests/test_simulation.py
tests/test_srm.py
tests/test_subgroup.py
tests/test_telemetry.py
tests/test_validate.py