我有以下代码:buckets = pd.DataFrame(sample.score.unique())
哪个会产生:
0
0 0.342
1 0.408
2 0.450
3 0.458
4 0.492
5 0.500
当我尝试使用buckets.rename(columns = {'0': 'score'}, inplace = True)
重命名该列时,列名0
未重命名为score
。
如何将0
重命名为score
?
答案 0 :(得分:2)
对于您而言,只需删除列名上的引号即可
{0: 'scores'}