[ Web Proxy ]
URL:
Viewing: https://arrow.apache.org/docs/python/generated/pyarrow.null.html [Back]  [Original]

pyarrow.null — Apache Arrow v25.0.1
Back to top
Search the docs ...:

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 Field type with a null type and a name:

>>> pa.field('null_field', pa.null())
pyarrow.Field<null_field: null>

Web Proxy Viewer  |  New URL  |  Original Page