cudf.Index.to_pandas#
- Index.to_pandas(nullable=False)#
Convert to a Pandas Index.
- Parameters
- nullablebool, Default False
If
nullable
isTrue
, the resulting index will have a corresponding nullable Pandas dtype. If there is no corresponding nullable Pandas dtype present, the resulting dtype will be a regular pandas dtype. Ifnullable
isFalse
, the resulting index will either convert null values tonp.nan
orNone
depending on the dtype.
Examples
>>> import cudf >>> idx = cudf.Index([-3, 10, 15, 20]) >>> idx Int64Index([-3, 10, 15, 20], dtype='int64') >>> idx.to_pandas() Int64Index([-3, 10, 15, 20], dtype='int64') >>> type(idx.to_pandas()) <class 'pandas.core.indexes.numeric.Int64Index'> >>> type(idx) <class 'cudf.core.index.Int64Index'>