pyarrow.large_list_view#

pyarrow.large_list_view(value_type)LargeListViewType#

Create LargeListViewType instance from child data type or field.

This data type may not be supported by all Arrow implementationsbecause it is an alternative to the ListType.

Parameters:
value_typeDataType orField
Returns:
list_view_typeDataType

Examples

Create an instance of LargeListViewType:

>>>importpyarrowaspa>>>pa.large_list_view(pa.int8())LargeListViewType(large_list_view<item: int8>)