`nexyron.policy_uplift_compare`

Generic Description

nexyron.policy_uplift_compare compare two policies on the same labeled abstraction dataset by their observational treated-versus-control uplift summaries

CALL nexyron.procedures()
YIELD name, description, parameters, output_columns
WHERE name = 'nexyron.policy_uplift_compare'
RETURN name, description, parameters, output_columns

Semantic policy procedures evaluate, compare, decide, apply, and report on registered decision policies, including bandit, uplift, causal, and off-policy workflows.

Consumer-Level Explanation

This procedure belongs to the decisioning, intervention, scenario, or causal analysis layer. Use it when you want to choose actions, log actions, evaluate responses, or estimate treatment effects from the current abstraction contracts.

Parameters

Output Columns

Example Contract Prerequisite

The executable Cypher blocks on this page query nexyron.procedures() so they work in an empty database and stay synchronized with the live procedure registry. A direct CALL nexyron.policy_uplift_compare(...) requires the named abstraction contracts, artifacts, features, snapshots, datasets, models, or policies referenced by that call to exist first; otherwise the runtime correctly fails with an unknown-contract error rather than inventing state.

Conceptual Explanation

The important thing about nexyron.policy_uplift_compare is that it stays inside the same Cypher and abstraction-contract runtime as the rest of Nexyron. That means it can compose with named abstractions, time-aware snapshot contracts, document-style payloads, graph-native identity, and later model or policy layers without forcing you to move into a separate tool first.

More Detailed Explanation

In practical queries, start by deciding the row grain you want after the call: one row per node, one row per path, one row per registry object, one row per artifact, or one row per summary. Then keep that grain explicit with YIELD and named projections. That is the difference between a useful planner-facing example and a vague call that downstream tooling cannot safely compose. For contract-driven abstraction procedures, the executable examples on these pages intentionally inspect procedure metadata unless the required named artifacts are created in the same example.

Advanced Example

CALL nexyron.procedures()
YIELD name, parameters, output_columns
WHERE name = 'nexyron.policy_uplift_compare'
RETURN name,
       [p IN parameters | p.name] AS parameter_names,
       output_columns
ORDER BY name

Real Use Cases

Real Limitations And Tradeoffs