causal-hub 0.0.5

A library for causal models, inference and discovery.
Documentation
{
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "$id": "catctbn.schema.json",
    "type": "object",
    "properties": {
        "name": {
            "type": [
                "string",
                "null"
            ]
        },
        "description": {
            "type": [
                "string",
                "null"
            ]
        },
        "initial_distribution": {
            "$ref": "catbn.schema.json"
        },
        "graph": {
            "$ref": "digraph.schema.json"
        },
        "cims": {
            "type": "array",
            "items": {
                "$ref": "catcim.schema.json"
            }
        },
        "type": {
            "type": "string",
            "const": "catctbn"
        }
    },
    "required": [
        "initial_distribution",
        "graph",
        "cims",
        "type"
    ]
}