py-why / causal-learn

Causal Discovery in Python. It also includes (conditional) independence tests and score functions.
https://causal-learn.readthedocs.io/en/latest/
MIT License
1.04k stars 174 forks source link

Null Hypothesis in Conditoinal Independence Tests #166

Closed arainboldt closed 4 months ago

arainboldt commented 5 months ago

Hi!

What's the null hypothesis in the conditional independence tests? Is it independence or dependence?

e.g. https://github.com/py-why/causal-learn/blob/main/causallearn/utils/cit.py#L294

I'm trying to understand exactly how to interpret the p-value returned from the CIT methods.

Thanks!

Andrew

kunwuz commented 5 months ago

Hi, I think the null hypothesis is conditional independence.

arainboldt commented 5 months ago

This was my assumption. I just wanted to confirm. Thanks.