Compute centrality measures in a social graph.

Parameters:
The NodeAnalysis action button performs advanced structural analysis on a graph by calculating key metrics per node, including:
It is particularly useful in social network analysis, graph theory, and community behavior studies, providing insight into node influence, position, and network cohesion.
The action requires a dataset that describes connections between nodes in a graph structure, typically formatted with columns:
A — Node ID of the source nodeB — Node ID of the target nodeWeight — Weight of the connection between A and BThe output is a dataset enriched with several graph metrics:
socialDegree: Number of direct connections per node.maxSocialDegreeNeighbor: Maximum degree of neighboring nodes.isSocialLeader_NonStrict: Node is a non-strict leader (based on certain heuristics).isSocialLeader_Strict: Node is a strict leader (stricter thresholds).coreNumber_std: Standard core number for the node.CoreNumber_weighted: Weighted core number using the provided edge weights.
InlineTable, ReadCSV, or any table source containing node-to-node connections.NodeAnalysis action button onto the canvas.Column with id A: Source node columnColumn with id B: Target node columnWeighted of connections A ↔ B: Connection weight columnMax number of threads = -1 for auto-parallelismMaximum value for Node ID unless your graph contains exceptionally large IDs
- Notes:
- The action supports weighted graphs and provides more accurate core metrics in such scenarios.
- Leadership detection is binary (1 = leader, 0 = non-leader) and depends on structural patterns.
- The higher the
coreNumber_weighted, the more embedded and central the node is within the graph.
