causal-hub 0.0.5

A library for causal models, inference and discovery.
Documentation
{
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "$id": "ungraph.schema.json",
    "type": "object",
    "properties": {
        "labels": {
            "type": "array",
            "items": {
                "type": "string"
            }
        },
        "edges": {
            "type": "array",
            "items": {
                "type": "array",
                "items": {
                    "type": "string"
                },
                "minItems": 2,
                "maxItems": 2
            }
        },
        "type": {
            "type": "string",
            "const": "ungraph"
        }
    },
    "required": [
        "labels",
        "edges",
        "type"
    ]
}