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

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

pyarrow.int8#

pyarrow.int8()#

Create instance of signed int8 type.

Examples

Create an instance of int8 type:

>>> import pyarrow as pa
>>> pa.int8()
DataType(int8)
>>> print(pa.int8())
int8

Create an array with int8 type:

>>> pa.array([0, 1, 2], type=pa.int8())
<pyarrow.lib.Int8Array object at ...>
[
  0,
  1,
  2
]

Web Proxy Viewer  |  New URL  |  Original Page