xorbits.pandas.Index.dtype#

property Index.dtype#

Return the dtype object of the underlying data.

Examples

>>> idx = pd.Index([1, 2, 3])  
>>> idx  
Index([1, 2, 3], dtype='int64')
>>> idx.dtype  
dtype('int64')

This docstring was copied from pandas.core.indexes.base.Index.