causal_testing.testing.base_test_case

This module contains the BaseTestCase dataclass, which stores the information required for identification

Module Contents

Classes

BaseTestCase

A base causal test case represents the relationship of an edge on a causal DAG.

class causal_testing.testing.base_test_case.BaseTestCase

A base causal test case represents the relationship of an edge on a causal DAG. :param treatment_variable: A causal variable representing the treatment/control variable :param outcome_variable: A causal variable representing the outcome/output variable :param effect: A string representing the effect, current support effects are ‘direct’ and ‘total’

treatment_variable: causal_testing.specification.variable.Variable
outcome_variable: causal_testing.specification.variable.Variable
effect: str
__post_init__()