pyspark.pandas.MultiIndex.astype

MultiIndex。 astype ( dtype:聯盟(str,類型,numpy.dtype,pandas.core.dtypes.base.ExtensionDtype] )→IndexOpsLike

把指定dtype pandas-on-Spark對象dtype

參數
dtype 數據類型

使用numpy。dtypeor Python type to cast entire pandas object to the same type.

返回
在同一 相同類型作為調用者

另請參閱

to_datetime

將參數轉換為日期時間。

例子

> > >爵士=ps係列([1,2),dtype=“int32”)> > >爵士0 11 2dtype: int32
> > >爵士astype(“int64”)0 11 2dtype: int64
> > >爵士重命名(“一個”)to_frame()set_index(“一個”)指數astype(“int64”)Int64Index ([1,2], dtype = int64, name = ' a ')