char_col
The char_col
method creates a column containing Java primitive character values.
note
This method is commonly used with new_table
to create tables.
Syntax
char_col(name: str, data: Sequence[char]) -> InputColumn
Parameters
Parameter | Type | Description |
---|---|---|
name | str | The name of the new column. |
data | Sequence[char] | The column values. This can be any sequence of compatible data, e.g., list, tuple, ndarray, pandas series, etc. |
Returns
An InputColumn
.
Example
The following examples use new_table
to create a table with a single column of characters named Chars
.
from deephaven import new_table
from deephaven.column import char_col
result = new_table([char_col("Chars", "ab")])
- result