hipdf.Series.to_arrow#
20 min read time
Applies to Linux
- Series.to_arrow()#
Convert to a PyArrow Array.
Returns#
PyArrow Array
Examples#
>>> import cudf >>> sr = cudf.Series(["a", "b", None]) >>> sr.to_arrow() <pyarrow.lib.StringArray object at 0x7f796b0e7600> [ "a", "b", null ] >>> ind = cudf.Index(["a", "b", None]) >>> ind.to_arrow() <pyarrow.lib.StringArray object at 0x7f796b0e7750> [ "a", "b", null ]