我尝试使用以下代码重命名索引值:
df_1.rename({'*****': "Favour Edwards"}, axis = 0, inplace = True)
我收到此消息:
/home/jupyterlab/conda/envs/python/lib/python3.6/site-packages/pandas/core/frame.py:4238: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame
See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
return super().rename(**kwargs)
尽管我的代码仍然没有出现任何可观察到的错误,但我仍然检查了链接,但是不幸的是,我仍然对编码还很陌生,对于文档而言,词汇/语义似乎让我真正理解起来有点复杂。有人可以用简单的术语来分解含义吗?
答案 0 :(得分:-1)
这不是警告错误(大区别),表明您的操作可能未达到预期的效果,应检查结果。