pyarrow.null#
- pyarrow.null()#
- Create instance of null type. - Examples - Create an instance of a null type: - >>> import pyarrow as pa >>> pa.null() DataType(null) >>> print(pa.null()) null - Create a - Fieldtype with a null type and a name:- >>> pa.field('null_field', pa.null()) pyarrow.Field<null_field: null> 
 
    