You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/reference/arrays.rst
+6
Original file line number
Diff line number
Diff line change
@@ -55,6 +55,12 @@ is an :class:`ArrowDtype`.
55
55
`Pyarrow <https://arrow.apache.org/docs/python/index.html>`__ provides similar array and `data type <https://arrow.apache.org/docs/python/api/datatypes.html>`__
56
56
support as NumPy including first-class nullability support for all data types, immutability and more.
57
57
58
+
.. note::
59
+
60
+
For string types (``pyarrow.string()``, ``string[pyarrow]``), PyArrow support is still facilitated
61
+
by :class:`arrays.ArrowStringArray` and ``StringDtype("pyarrow")``. See the :ref:`string section <api.arrays.string>`
62
+
below.
63
+
58
64
While individual values in an :class:`arrays.ArrowExtensionArray` are stored as a PyArrow objects, scalars are **returned**
59
65
as Python scalars corresponding to the data type, e.g. a PyArrow int64 will be returned as Python int, or :class:`NA` for missing
0 commit comments