我有以下代码:
A = pd.DataFrame([[1, 2], [1, 3], [4, 6]], columns=[['att1', 'att2']]) A['idx'] = ['a', 'b', 'c'] A
在我这样做之前它工作正常(尝试将列“idx”设置为数据帧的索引)
A.set_index('idx', inplace=True)
这会引发错误
TypeError: only integer scalar arrays can be converted to a scalar index
这是什么意思 ?
梵蒂冈之花
相关分类