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

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

pyarrow.nulls#

pyarrow.nulls(size, type=None, MemoryPool memory_pool=None)#

Create a strongly-typed Array instance with all elements null.

Parameters:
sizeint

Array length.

typepyarrow.DataType, default None

Explicit type for the array. By default use NullType.

memory_poolMemoryPool, default None

Arrow MemoryPool to use for allocations. Uses the default memory pool if not passed.

Returns:
arrArray

Examples

>>> import pyarrow as pa
>>> pa.nulls(10)
<pyarrow.lib.NullArray object at ...>
10 nulls
>>> pa.nulls(3, pa.uint32())
<pyarrow.lib.UInt32Array object at ...>
[
  null,
  null,
  null
]

Web Proxy Viewer  |  New URL  |  Original Page