xorbits.pandas.Series.dtype#

property Series.dtype#

Return the dtype object of the underlying data.

Examples

>>> s = pd.Series([1, 2, 3])  
>>> s.dtype  
dtype('int64')

This docstring was copied from pandas.core.series.Series.