字符串Dtype 数据类型不被理解

当从扩展类型转换时,例如,我得到.例:pd.Int32Dtype()TypeError: data type not understood

num_col_with_nan = num_col_with_nan.astype(pd.Int32Dtype()).astype("string")


慕莱坞森
浏览 76回答 1
1回答

饮歌长啸

尚不支持扩展类型之间的转换 - 有关一般概述,请参阅 #22384,特别是 StringDtype,请参阅 #31204。作为解决方法,请先尝试强制转换为 str:num_col_with_nan = num_col_with_nan.astype(pd.Int32Dtype()).astype(str).astype("string")
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python