Skip to main content
Version: Python

update_graph

The update_graph method returns the source table's update graph.

Syntax

source.update_graph

Parameters

update_graph does not take any arguments.

Returns

The source table's update graph.

Example

from deephaven import empty_table

source = empty_table(5).update(["IntCol = i", "StrCol = (IntCol > 2) ? `A` : `B`"])

print(source.update_graph)