Metadata-Version: 2.1
Name: causal-inference
Version: 0.0.3
Summary: Causal Inference
Home-page: https://github.com/ga74kud/causal_inference
Author: Michael Hartmann
Author-email: michael.hartmann@v2c2.at
License: GNU GENERAL PUBLIC LICENSE
Platform: UNKNOWN
Description-Content-Type: text/markdown
Requires-Dist: scipy
Requires-Dist: numpy
Requires-Dist: matplotlib
Requires-Dist: argparse
Requires-Dist: python-igraph
Requires-Dist: pycairo
Requires-Dist: plotly
Requires-Dist: pandas
Requires-Dist: sympy

![](/images/pexels_splash.jpg)


# Causal Inference

- [ ] Causal Inference

# Installation
```bash
pip install causal-inference
```

# Usage

```python
import causal_inference as ci
import numpy as np
probs={'A': [1, 0.1], 'B': [1, 0.1], 'C': [1, 0.1], 'D': [1, 0.1]}
xy={"mean": np.array([[1, 2], [2, 4]]), "dev": np.array([[.1, .2], [.2, .4]])}

new_xv=ci.next_position_scm(xy, probs)
print(new_xv["mean"])
print(new_xv["dev"])
```




# Citation

Please cite following document if you use this python package:
```
TBD
```


Image source: https://www.pexels.com/photo/blue-water-2695624/

