dowhy.interpreters package
Submodules
dowhy.interpreters.confounder_distribution_interpreter module
- class dowhy.interpreters.confounder_distribution_interpreter.ConfounderDistributionInterpreter(estimate, fig_size, font_size, var_name, var_type, **kwargs)[source]
Bases:
VisualInterpreter
- Parameters
estimate – Causal estimate
fig_size – Size of the figure
font_size – Size of the font of the plot title
var_name – The confounding variable for which distribution changes should be compared
var_type – Type of the confounding variable; must be one of ‘continuous’ or ‘discrete’
- SUPPORTED_ESTIMATORS = [<class 'dowhy.causal_estimators.propensity_score_weighting_estimator.PropensityScoreWeightingEstimator'>]
dowhy.interpreters.propensity_balance_interpreter module
- class dowhy.interpreters.propensity_balance_interpreter.PropensityBalanceInterpreter(estimate, **kwargs)[source]
Bases:
VisualInterpreter
Initialize an interpreter.
- Parameters
instance – An object of type CausalModel, CausalEstimate or CausalRefutation.
- SUPPORTED_ESTIMATORS = [<class 'dowhy.causal_estimators.propensity_score_stratification_estimator.PropensityScoreStratificationEstimator'>]
dowhy.interpreters.textual_effect_interpreter module
- class dowhy.interpreters.textual_effect_interpreter.TextualEffectInterpreter(instance, **kwargs)[source]
Bases:
TextualInterpreter
Initialize an interpreter.
- Parameters
instance – An object of type CausalModel, CausalEstimate or CausalRefutation.
- SUPPORTED_ESTIMATORS = ['all']
dowhy.interpreters.textual_interpreter module
- class dowhy.interpreters.textual_interpreter.TextualInterpreter(instance, **kwargs)[source]
Bases:
Interpreter
Base class for interpreters that show text as output.
Initialize an interpreter.
- Parameters
instance – An object of type CausalModel, CausalEstimate or CausalRefutation.
dowhy.interpreters.visual_interpreter module
- class dowhy.interpreters.visual_interpreter.VisualInterpreter(instance, **kwargs)[source]
Bases:
Interpreter
Base class for interpreters that show plots or visualizations as output.
Initialize an interpreter.
- Parameters
instance – An object of type CausalModel, CausalEstimate or CausalRefutation.