read_feather
read_feather
reads a feather file into a Deephaven table.
Syntax
read_feather(path: str) -> Table
Parameters
Parameter | Type | Description |
---|---|---|
path | str | The file path. |
Returns
A Deephaven table.
Example
The following example reads a feather file into a Deephaven table:
from deephaven import arrow as dharrow
source = dharrow.read_feather("/data/examples/Iris/feather/Iris.feather")
- source