pyspark.pandas.Index.astype¶
-
索引。
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 ')