| title | long_col |
|---|
The long_col method creates a column containing Java primitive long values.
Note
This method is commonly used with new_table to create tables.
long_col(name: str, data: Sequence[int]) -> InputColumnThe name of the new column.
The column values.
An InputColumn.
The following examples use new_table to create a table with a single column of longs named Longs.
from deephaven import new_table
from deephaven.column import long_col
result = new_table([long_col("Longs", [10000000, 987654321, -314159265])])