| title | float_col |
|---|
The float_col method creates a column containing Java primitive float values.
Note
This method is commonly used with new_table to create tables.
int_col(name: str, data: Sequence[float]) -> InputColumnThe name of the new column.
The column values. This can be any sequence of compatible data, e.g., list, tuple, ndarray, pandas series, etc.
An InputColumn.
The following examples use new_table to create a table with a single column of floats named Floats.
from deephaven import new_table
from deephaven.column import float_col
result = new_table([float_col("Floats", [9.9, 8.8, 7.7])])