update_graph
The update_graph method returns the source table's update graph.
Syntax
Parameters
update_graph does not take any arguments.
Returns
The source table's update graph.
Show your appreciation for Deephaven by starring us on GitHub.
source.update_graph
from deephaven import empty_table
source = empty_table(5).update(["IntCol = i", "StrCol = (IntCol > 2) ? `A` : `B`"])
print(source.update_graph)