cudf.Index.to_arrow#
- Index.to_arrow() pa.Array [source]#
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 ]