Compute significance level of each arc.

Parameters:
The SignificanceLevel action computes the statistical significance level of each weighted connection between nodes in a network graph, based on node identifiers and connection weights. This is especially useful in network analysis tasks, where it is important to identify the relevance or strength of individual edges based on their weight relative to the overall graph structure.
Use this action in scenarios where you analyze large-scale networks (e.g., infection spread, social interaction, or transportation graphs) and want to understand which links (edges) between nodes are most significant. The output adds a new column significanceLevel, which indicates the normalized significance of the connection between two nodes.
This action reads a table containing pairwise connections between entities (nodes), computes the total strength of outgoing and incoming links for each node, and evaluates how significant each individual link is based on its weight and the global node ID distribution.
The result is a new significanceLevel column with a value between 0 and 1:

The input table must contain:
Example input:
| A | B | Weight |
|---|---|---|
| 1 | 5 | 0.8 |
| 1 | 2 | 0.9 |
| 2 | 3 | 0.6 |
The output will include all input columns plus an additional significanceLevel column:

Maximum value for a node id.