pyarrow.chunked_array#
- pyarrow.chunked_array(arrays, type=None)#
- Construct chunked array from list of array-like objects - Parameters
- Returns
 - Examples - >>> import pyarrow as pa >>> pa.chunked_array([], type=pa.int8()) <pyarrow.lib.ChunkedArray object at ...> [ ... ] - >>> pa.chunked_array([[2, 2, 4], [4, 5, 100]]) <pyarrow.lib.ChunkedArray object at ...> [ [ 2, 2, 4 ], [ 4, 5, 100 ] ] 
