Skip to main content

Structural Causal Models

Project description

OS Status
Linux L Py 3.7 - 3.9
Windows W Py 3.7 - 3.9
Mac M Py 3.7 - 3.9

A Python package implementing Structural Causal Models (SCM).

The library uses the CAS library SymPy to allow the user to state arbitrary assignment functions and noise distributions as supported by SymPy and builds the DAG with networkx.

It supports the features:

  • Sampling
  • Intervening
  • Plotting
  • Printing

and by extension all methods on a DAG provided by networkx after accessing the member variable dag

Installation

Git clone the repository and run the setup.py file

git clone https://github.com/maichmueller/scm
cd scm
python setup.py install

Example usage

To build the DAG

X \rightarrow Y \leftarrow Z \rightarrow X

with the assignments

Z ~ LogLogistic(alpha=1, beta=1)

X = 3Z^2{\cdot}N

Y = 2Z + \sqrt{X} + N

one can describe the assignments as strings

from scm import SCM

myscm = SCM(
    [
        "Z = N, N ~ LogLogistic(alpha=1, beta=1)",
        "X = N * 3 * Z ** 2, N ~ LogNormal(mean=1, std=1)",
        "Y = N + 2 * Z + sqrt(X), N ~ Normal(mean=2, std=1)"
    ]
)

or build the assignments piecewise themselves via an assignment map

from sympy.stats import LogLogistic, LogNormal, Normal


assignment_map = {
   "Z": (
       "N",
       LogLogistic("N", alpha=1, beta=1)
   ),
   "X": (
       "N * 3 * Z ** 2",
       LogNormal("N", mean=1, std=1),
   ),
   "Y": (
       "N + 2 * Z + sqrt(X)",
       Normal("N", mean=2, std=1),
   ),
}

myscm = SCM(assignment_map)

The SCM supports a form of pretty printing its current setup, which includes mentioning active interventions and the assignments

print(myscm)
Structural Causal Model of 3 variables: Z, X, Y
Following variables are actively intervened on: []
Current Assignments are:
Z := f(N) = N	 [ N ~ LogLogistic(alpha=1, beta=1) ]
X := f(N, Z) = N * 3 * Z ** 2	 [ N ~ LogNormal(mean=1, std=1) ]
Y := f(N, X, Z) = N + 2 * Z + sqrt(X)	 [ N ~ Normal(mean=2, std=1) ]

One can easily perform interventions on the variables, e.g. a Do-intervention \text{do}(X=1=)

myscm.do_intervention([("X", 1)])

and sample as many samples from it as desired

myscm.sample(5)
X Z Y
0 1 0.204204 2.412121
1 1 0.038627 2.035116
2 1 0.627638 4.767240
3 1 0.620331 4.497902
4 1 0.143817 4.723647

The current intervention is also noted in its string representation

print(myscm)
Structural Causal Model of 3 variables: Z, X, Y
Following variables are actively intervened on: ['X']
Current Assignments are:
Z := f(N) = N	 [ N ~ LogLogistic(alpha=1, beta=1) ]
X := f(N) = 1	 [ N ~ LogNormal(mean=1, std=1) ]
Y := f(N, X, Z) = N + 2 * Z + sqrt(X)	 [ N ~ Normal(mean=2, std=1) ]

which can be restored to the initial status via undoing the intervention

myscm.undo_intervention()

If you have graphviz installed, you can also use it to plot the DAG easily

myscm.plot(node_size=1000, alpha=1)

example_plot

No history capture as of yet.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

scmodels-0.1.tar.gz (19.2 kB view details)

Uploaded Source

Built Distribution

scmodels-0.1-py3-none-any.whl (16.1 kB view details)

Uploaded Python 3

File details

Details for the file scmodels-0.1.tar.gz.

File metadata

  • Download URL: scmodels-0.1.tar.gz
  • Upload date:
  • Size: 19.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0.post20201207 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.5

File hashes

Hashes for scmodels-0.1.tar.gz
Algorithm Hash digest
SHA256 e0ac65f9ae0a56a20de6df2526bc2e46753cfee859109db6d3a70e768e07a7d6
MD5 cd2e21c3af4610aae0070b05d91ec95c
BLAKE2b-256 e61a1c831048e245d0e8156735150f5aa21bb6e90ed05e20d2abd42ddb01a93b

See more details on using hashes here.

File details

Details for the file scmodels-0.1-py3-none-any.whl.

File metadata

  • Download URL: scmodels-0.1-py3-none-any.whl
  • Upload date:
  • Size: 16.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.0 setuptools/51.0.0.post20201207 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.5

File hashes

Hashes for scmodels-0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 12ecdbed708ac31085604dbd328d3b1158ec6c6ebd37db8e9683e0f7f46cc41a
MD5 f30cde714966b1265309ec074a253567
BLAKE2b-256 4c1f0f4c0397ace4d6010ae65d66a07ae5e2ed2f15295158fa529d5735e41c11

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page