You are viewing documentation about an older version (1.30.0). View latest version

modin.pandas.Series.dtypes

property Series.dtypes: DtypeObj[source]

Return the dtype object of the underlying data. See DataFrame.dtypes() for exact behavior.

Examples

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