Causality Analyzer
    Preparing search index...
    Index
    • Abduction: infer noise from observation

      Parameters

      • observation: Record<string, number>

      Returns Record<string, number>

    • Score each node by how anomalous its current value is under the SCM

      Parameters

      • observation: Record<string, number>

      Returns Map<string, number>

    • Action + Prediction: apply intervention and forward-simulate

      Parameters

      • noise: Record<string, number>
      • intervention: Record<string, number>

      Returns Record<string, number>

    • Detect if the observation's anomaly pattern indicates distribution change

      Parameters

      • before: Record<string, number>[]
      • after: Record<string, number>[]

      Returns { changed: boolean; meanShift: number; pValue: number }