pyspark.pandas.Index.dtype¶
-
財產
索引。
dtype
¶ -
返回dtype底層數據的對象。
例子
> > >年代=ps。係列([1,2,3])> > >年代。dtypedtype (“int64”)
> > >年代=ps。係列(列表(“abc”))> > >年代。dtypedtype (“O”)
> > >年代=ps。係列(pd。date_range(“20130101”,期=3))> > >年代。dtypedtype (“< M8 (ns)”)
> > >年代。重命名(“一個”)。to_frame()。set_index(“一個”)。指數。dtypedtype (“< M8 (ns)”)