module pixeltable.functions.array
Pixeltable UDFs forArrayType.
Example:
udf to_list()
Signature
ndarray.tolist().
Useful for exporting to systems that lack a fixed-shape tensor type (e.g. Iceberg).
Examples:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
ArrayType.
Example:
import pixeltable as pxt
t = pxt.get_table(...)
t.select(t.array_col.to_list()).collect()
@pxt.udf
to_list(self: pxt.Array) -> pxt.Json
ndarray.tolist().
Useful for exporting to systems that lack a fixed-shape tensor type (e.g. Iceberg).
Examples:
t.select(t.array_col.to_list()).collect()
Was this page helpful?