我有一个只有唯一 id 的 Panda 系列“id”,它是对象的 dtype。
data_df.id.dtype
返回数据类型('O')
我正在尝试按照此处的示例从我的 df 创建稀疏矩阵:Efficiently create sparse pivot table in pandas?
id_u= list(data_df.id.unique()) row = data_df.id.astype('category', categories=reviewer_u).cat.codes
我得到:
TypeError: data type "category" not understood
我不确定这个错误是什么意思,我也找不到太多关于它的信息。
相关分类